Merge tag 'leds_for_4.15rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anasz...
authorLinus Torvalds <torvalds@linux-foundation.org>
Wed, 15 Nov 2017 02:09:31 +0000 (18:09 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 15 Nov 2017 02:09:31 +0000 (18:09 -0800)
Pull LED updates from Jacek Anaszewski:
 "New LED class driver:
   - add a driver for PC Engines APU/APU2 LEDs

  New LED trigger:
   - add a system activity LED trigger

  LED core improvements:
   - replace flags bit shift with BIT() macros

  Convert timers to use timer_setup() in:
   - led-core
   - ledtrig-activity
   - ledtrig-heartbeat
   - ledtrig-transient

  LED class drivers fixes:
   - lp55xx: fix spelling mistake: 'cound' -> 'could'
   - tca6507: Remove unnecessary reg check
   - pca955x: Don't invert requested value in pca955x_gpio_set_value()

  LED documentation improvements:
   - update 00-INDEX file"

* tag 'leds_for_4.15rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds:
  leds: Add driver for PC Engines APU/APU2 LEDs
  leds: lp55xx: fix spelling mistake: 'cound' -> 'could'
  leds: Convert timers to use timer_setup()
  Documentation: leds: Update 00-INDEX file
  leds: tca6507: Remove unnecessary reg check
  leds: ledtrig-heartbeat: Convert timers to use timer_setup()
  leds: Replace flags bit shift with BIT() macros
  leds: pca955x: Don't invert requested value in pca955x_gpio_set_value()
  leds: ledtrig-activity: Add a system activity LED trigger

1  2 
drivers/leds/Makefile
drivers/leds/trigger/Makefile

diff --combined drivers/leds/Makefile
@@@ -1,4 -1,3 +1,4 @@@
 +# SPDX-License-Identifier: GPL-2.0
  
  # LED Core
  obj-$(CONFIG_NEW_LEDS)                        += led-core.o
@@@ -9,6 -8,7 +9,7 @@@ obj-$(CONFIG_LEDS_TRIGGERS)              += led-tri
  # LED Platform Drivers
  obj-$(CONFIG_LEDS_88PM860X)           += leds-88pm860x.o
  obj-$(CONFIG_LEDS_AAT1290)            += leds-aat1290.o
+ obj-$(CONFIG_LEDS_APU)                        += leds-apu.o
  obj-$(CONFIG_LEDS_AS3645A)            += leds-as3645a.o
  obj-$(CONFIG_LEDS_BCM6328)            += leds-bcm6328.o
  obj-$(CONFIG_LEDS_BCM6358)            += leds-bcm6358.o
@@@ -1,4 -1,3 +1,4 @@@
 +# SPDX-License-Identifier: GPL-2.0
  obj-$(CONFIG_LEDS_TRIGGER_TIMER)      += ledtrig-timer.o
  obj-$(CONFIG_LEDS_TRIGGER_ONESHOT)    += ledtrig-oneshot.o
  obj-$(CONFIG_LEDS_TRIGGER_DISK)               += ledtrig-disk.o
@@@ -7,6 -6,7 +7,7 @@@ obj-$(CONFIG_LEDS_TRIGGER_HEARTBEAT)     +
  obj-$(CONFIG_LEDS_TRIGGER_BACKLIGHT)  += ledtrig-backlight.o
  obj-$(CONFIG_LEDS_TRIGGER_GPIO)               += ledtrig-gpio.o
  obj-$(CONFIG_LEDS_TRIGGER_CPU)                += ledtrig-cpu.o
+ obj-$(CONFIG_LEDS_TRIGGER_ACTIVITY)   += ledtrig-activity.o
  obj-$(CONFIG_LEDS_TRIGGER_DEFAULT_ON) += ledtrig-default-on.o
  obj-$(CONFIG_LEDS_TRIGGER_TRANSIENT)  += ledtrig-transient.o
  obj-$(CONFIG_LEDS_TRIGGER_CAMERA)     += ledtrig-camera.o