All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/11] constify gpio_led
@ 2017-12-20  8:47 Arvind Yadav
  2017-12-20  8:47 ` [PATCH 01/11] MIPS: Alchemy: " Arvind Yadav
                   ` (11 more replies)
  0 siblings, 12 replies; 18+ messages in thread
From: Arvind Yadav @ 2017-12-20  8:47 UTC (permalink / raw)
  To: nsekhar, khilman, linux, kaloz, khalasa, aaro.koskinen, tony,
	jason, andrew, sebastian.hesselbarth, gregory.clement, daniel,
	haojian.zhuang, robert.jarzmik, marek.vasut, slapin, jic23,
	kgene, krzk, ralf, ysato, dalias, tglx, mingo, hpa
  Cc: linux-kernel

gpio_led are not supposed to change at runtime.
struct gpio_led_platform_data working with const gpio_led
provided by <linux/leds.h>. So mark the non-const structs
as const.

Arvind Yadav (11):
  [PATCH 01/11] MIPS: Alchemy: constify gpio_led
  [PATCH 02/11] MIPS: AR7: constify gpio_led
  [PATCH 03/11] MIPS: TXX9: constify gpio_led
  [PATCH 04/11] x86: geode: constify gpio_led
  [PATCH 05/11] sh: mach-rsk: rsk7203: constify gpio_led
  [PATCH 06/11] ARM: davinci: constify gpio_led
  [PATCH 07/11] ARM: ixp4xx: constify gpio_led
  [PATCH 08/11] ARM: OMAP1: constify gpio_led
  [PATCH 09/11] ARM: orion5x: constify gpio_led
  [PATCH 10/11] ARM: s3c24xx: constify gpio_led
  [PATCH 11/11] ARM: pxa: constify gpio_led

 arch/arm/mach-davinci/board-neuros-osd2.c |  2 +-
 arch/arm/mach-ixp4xx/dsmg600-setup.c      |  2 +-
 arch/arm/mach-ixp4xx/nas100d-setup.c      |  2 +-
 arch/arm/mach-ixp4xx/omixp-setup.c        |  2 +-
 arch/arm/mach-omap1/board-h2.c            |  2 +-
 arch/arm/mach-omap1/board-h3.c            |  2 +-
 arch/arm/mach-omap1/board-htcherald.c     |  2 +-
 arch/arm/mach-omap1/board-osk.c           |  4 ++--
 arch/arm/mach-orion5x/board-d2net.c       |  2 +-
 arch/arm/mach-orion5x/dns323-setup.c      |  2 +-
 arch/arm/mach-orion5x/ls_hgl-setup.c      |  2 +-
 arch/arm/mach-orion5x/mv2120-setup.c      |  2 +-
 arch/arm/mach-orion5x/net2big-setup.c     |  2 +-
 arch/arm/mach-orion5x/rd88f5182-setup.c   |  2 +-
 arch/arm/mach-orion5x/ts409-setup.c       |  2 +-
 arch/arm/mach-orion5x/wrt350n-v2-setup.c  |  2 +-
 arch/arm/mach-pxa/balloon3.c              |  4 ++--
 arch/arm/mach-pxa/corgi.c                 |  2 +-
 arch/arm/mach-pxa/csb701.c                |  2 +-
 arch/arm/mach-pxa/magician.c              |  2 +-
 arch/arm/mach-pxa/mioa701.c               |  2 +-
 arch/arm/mach-pxa/palmld.c                |  2 +-
 arch/arm/mach-pxa/palmz72.c               |  2 +-
 arch/arm/mach-pxa/pcm027.c                |  2 +-
 arch/arm/mach-pxa/raumfeld.c              |  4 ++--
 arch/arm/mach-pxa/spitz.c                 |  2 +-
 arch/arm/mach-pxa/stargate2.c             |  2 +-
 arch/arm/mach-pxa/tosa.c                  |  2 +-
 arch/arm/mach-pxa/trizeps4.c              |  2 +-
 arch/arm/mach-pxa/zeus.c                  |  2 +-
 arch/arm/mach-s3c24xx/mach-h1940.c        |  2 +-
 arch/arm/mach-s3c24xx/mach-rx1950.c       |  2 +-
 arch/arm/mach-s3c64xx/mach-hmt.c          |  2 +-
 arch/arm/mach-s3c64xx/mach-smartq5.c      |  2 +-
 arch/arm/mach-s3c64xx/mach-smartq7.c      |  2 +-
 arch/arm/mach-s3c64xx/mach-smdk6410.c     |  2 +-
 arch/mips/alchemy/board-gpr.c             |  2 +-
 arch/mips/alchemy/board-mtx1.c            |  2 +-
 arch/mips/ar7/platform.c                  | 14 +++++++-------
 arch/mips/txx9/rbtx4927/setup.c           |  2 +-
 arch/sh/boards/mach-rsk/devices-rsk7203.c |  2 +-
 arch/x86/platform/geode/alix.c            |  2 +-
 arch/x86/platform/geode/geos.c            |  2 +-
 arch/x86/platform/geode/net5501.c         |  2 +-
 44 files changed, 53 insertions(+), 53 deletions(-)

-- 
1.9.1

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

end of thread, other threads:[~2017-12-25 13:07 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-20  8:47 [PATCH 00/11] constify gpio_led Arvind Yadav
2017-12-20  8:47 ` [PATCH 01/11] MIPS: Alchemy: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 02/11] MIPS: AR7: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 03/11] MIPS: TXX9: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 04/11] x86: geode: " Arvind Yadav
2017-12-23  7:50   ` kbuild test robot
2017-12-20  8:47 ` [PATCH 05/11] sh: mach-rsk: rsk7203: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 06/11] ARM: davinci: " Arvind Yadav
2017-12-23 10:01   ` Sekhar Nori
2017-12-20  8:47 ` [PATCH 07/11] ARM: ixp4xx: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 08/11] ARM: OMAP1: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 09/11] ARM: orion5x: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 10/11] ARM: s3c24xx: " Arvind Yadav
2017-12-20  8:47 ` [PATCH 11/11] ARM: pxa: " Arvind Yadav
2017-12-24 17:54   ` kbuild test robot
2017-12-25 13:04     ` arvindY
2017-12-23 10:13 ` [PATCH 00/11] " Russell King - ARM Linux
2017-12-25 13:07   ` arvindY

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.