All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/14] DT: Fix spelling of standard properties
@ 2016-04-20 15:32 ` Geert Uytterhoeven
  0 siblings, 0 replies; 66+ messages in thread
From: Geert Uytterhoeven @ 2016-04-20 15:32 UTC (permalink / raw)
  To: Dmitry Torokhov, Rob Herring, Lee Jones, Zhou Wang,
	Tony Lindgren, Srinivas Kandagatla, Michael Ellerman, Vinod Koul,
	Mark Brown, Alexandre Belloni, Joe Perches
  Cc: devicetree, linux-input, linux-arm-kernel, linux-pci,
	linuxppc-dev, dmaengine, Geert Uytterhoeven

	Hi all,

This patch series fixes misspellings of various standard DT properties
in DT binding documentation, DTS files, and error messages.
While most of these are harmless, some of them may cause hard-to-debug
failures.

Please apply where appropriate.

Thanks!

P.S. I used the following to detect misspellings:

    words="(address|clock|cooling|dma|gpio|index|interrupt|mbox|msi|nvmem|phy|phys|power-domain|pwm|reset|size|sleep|sound-dai|thermal-sensor)"

    git grep -Ew "${words}s-names"
    git grep -E "[^-]\<${words}-name\>[^-]"
    git grep -Ew "#${words}s-cells"		# false positive phys-cells
    git grep -E "#${words}-cell\>[^-]"

    git grep -w adress-cells
    git grep -Ew "interrupts-(map|parent)"

How can we prevent adding more of these?

One simple option is to add the offenders to scripts/spelling.txt.
Alternatively, we may want to do something smarter and more DT specific?

Geert Uytterhoeven (14):
  ARM: dts: STiH407: DT spelling s/interrupts-names/interrupt-names/
  ARM: dts: omap5-board-common: DT spelling
    s/interrupt-name/interrupt-names/
  ARM: dts: omap5-cm-t54: DT spelling s/interrupt-name/interrupt-names/
  ARM: dts: OMAP36xx: : DT spelling s/#address-cell/#address-cells/
  arm64: dts: lg1312: DT spelling s/#interrupts-cells/#interrupt-cells/
  dmaengine: bcm2835: DT spelling s/interrupts-names/interrupt-names/
  dt: booting-without-of: DT spelling
    s/#interrupt-cell/#interrupt-cells/
  powerpc: dts: acadia: DT spelling
    s/#interrupts-parent/#interrupt-parent/
  Input: touchscreen: Broadcom iProc: DT spelling
    s/clock-name/clock-names/
  misc: sram: DT spelling s/#adress-cells/#address-cells/
  PCI: hisi: DT spelling s/interrupts-*/interrupt-*/
  phy: phy-stih41x-usb: DT spelling s/#phy-cell/#phy-cells/
  rtc: rtc-sa1100: DT spelling s/interrupt-name/interrupt-names/
  regulator: ti-abb: DT spelling
    s/#{address,size}-cell/#{address,size}-cells/

 .../bindings/input/touchscreen/brcm,iproc-touchscreen.txt    |  2 +-
 Documentation/devicetree/bindings/pci/hisilicon-pcie.txt     | 12 ++++++------
 Documentation/devicetree/bindings/phy/phy-stih41x-usb.txt    |  2 +-
 .../devicetree/bindings/regulator/ti-abb-regulator.txt       | 10 +++++-----
 Documentation/devicetree/bindings/rtc/sa1100-rtc.txt         |  2 +-
 Documentation/devicetree/bindings/sound/davinci-mcbsp.txt    |  2 +-
 Documentation/devicetree/bindings/sram/sram.txt              |  2 +-
 Documentation/devicetree/booting-without-of.txt              |  2 +-
 arch/arm/boot/dts/omap36xx.dtsi                              |  2 +-
 arch/arm/boot/dts/omap5-board-common.dtsi                    |  2 +-
 arch/arm/boot/dts/omap5-cm-t54.dts                           |  2 +-
 arch/arm/boot/dts/stih407-pinctrl.dtsi                       |  2 +-
 arch/arm64/boot/dts/lg/lg1312.dtsi                           |  2 +-
 arch/powerpc/boot/dts/acadia.dts                             |  2 +-
 drivers/dma/bcm2835-dma.c                                    |  2 +-
 15 files changed, 24 insertions(+), 24 deletions(-)

-- 
1.9.1


^ permalink raw reply	[flat|nested] 66+ messages in thread

end of thread, other threads:[~2016-04-26 16:08 UTC | newest]

Thread overview: 66+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-20 15:32 [PATCH 00/14] DT: Fix spelling of standard properties Geert Uytterhoeven
2016-04-20 15:32 ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 01/14] ARM: dts: STiH407: DT spelling s/interrupts-names/interrupt-names/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 02/14] ARM: dts: omap5-board-common: DT spelling s/interrupt-name/interrupt-names/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 03/14] ARM: dts: omap5-cm-t54: " Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 04/14] ARM: dts: OMAP36xx: : DT spelling s/#address-cell/#address-cells/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 23:46   ` Rob Herring
2016-04-20 23:46     ` Rob Herring
2016-04-26 16:08     ` Tony Lindgren
2016-04-26 16:08       ` Tony Lindgren
2016-04-26 16:08       ` Tony Lindgren
2016-04-20 15:32 ` [PATCH 05/14] arm64: dts: lg1312: DT spelling s/#interrupts-cells/#interrupt-cells/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 06/14] dmaengine: bcm2835: DT spelling s/interrupts-names/interrupt-names/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-25 15:26   ` Vinod Koul
2016-04-25 15:26     ` Vinod Koul
2016-04-25 16:30     ` Geert Uytterhoeven
2016-04-25 16:30       ` Geert Uytterhoeven
2016-04-25 16:30       ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 07/14] dt: booting-without-of: DT spelling s/#interrupt-cell/#interrupt-cells/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 08/14] powerpc: dts: acadia: DT spelling s/#interrupts-parent/#interrupt-parent/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 15:32 ` [PATCH 09/14] Input: touchscreen: Broadcom iProc: DT spelling s/clock-name/clock-names/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 17:42   ` Dmitry Torokhov
2016-04-20 17:42     ` Dmitry Torokhov
2016-04-20 15:32 ` [PATCH 10/14] misc: sram: DT spelling s/#adress-cells/#address-cells/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-25 13:44   ` Rob Herring
2016-04-25 13:44     ` Rob Herring
2016-04-20 15:32 ` [PATCH 11/14] PCI: hisi: DT spelling s/interrupts-*/interrupt-*/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-25 13:44   ` Rob Herring
2016-04-25 13:44     ` Rob Herring
2016-04-20 15:32 ` [PATCH 12/14] phy: phy-stih41x-usb: DT spelling s/#phy-cell/#phy-cells/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-25 13:45   ` Rob Herring
2016-04-25 13:45     ` Rob Herring
2016-04-20 15:32 ` [PATCH 13/14] rtc: rtc-sa1100: DT spelling s/interrupt-name/interrupt-names/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-20 21:22   ` Alexandre Belloni
2016-04-20 21:22     ` Alexandre Belloni
2016-04-20 15:32 ` [PATCH 14/14] regulator: ti-abb: DT spelling s/#{address,size}-cell/#{address,size}-cells/ Geert Uytterhoeven
2016-04-20 15:32   ` [PATCH 14/14] regulator: ti-abb: DT spelling s/#{address, size}-cell/#{address, size}-cells/ Geert Uytterhoeven
2016-04-20 15:32   ` Geert Uytterhoeven
2016-04-21 19:29   ` [PATCH 14/14] regulator: ti-abb: DT spelling s/#{address,size}-cell/#{address,size}-cells/ Rob Herring
2016-04-21 19:29     ` [PATCH 14/14] regulator: ti-abb: DT spelling s/#{address, size}-cell/#{address, size}-cells/ Rob Herring
2016-04-21 19:29     ` Rob Herring
2016-04-20 15:37 ` [PATCH 00/14] DT: Fix spelling of standard properties Geert Uytterhoeven
2016-04-20 15:37   ` Geert Uytterhoeven
2016-04-20 15:37   ` Geert Uytterhoeven
2016-04-20 23:58 ` Rob Herring
2016-04-20 23:58   ` Rob Herring
2016-04-21 19:35   ` Rob Herring
2016-04-21 19:35     ` Rob Herring
2016-04-21 19:35     ` Rob Herring

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.