public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: torvalds@linux-foundation.org
Cc: linux-kernel@vger.kernel.org
Subject: [GIT PULL] Backlight for v5.5
Date: Thu, 28 Nov 2019 14:45:44 +0000	[thread overview]
Message-ID: <20191128144511.GA14416@dell> (raw)

Good afternoon Linus,

The following changes since commit 54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c:

  Linux 5.4-rc1 (2019-09-30 10:35:40 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git tags/backlight-next-5.5

for you to fetch changes up to 102a1b382177d89f75bc49b931c329a317cf531f:

  backlight: qcom-wled: Fix spelling mistake "trigged" -> "triggered" (2019-11-13 11:31:52 +0000)

----------------------------------------------------------------
 - New Functionality
   - Add support for an enable GPIO; lm3630a_bl
   - Add support for short circuit handling; qcom-wled
   - Add support for automatic string detection; qcom-wled

 - Fix-ups
   - Update Device Tree bindings; lm3630a-backlight, led-backlight, qcom-wled
   - Constify; ipaq_micro_bl
   - Optimise for CPU cycles; pwm_bl
   - Coding style fix-ups; pwm_bl
   - Trivial fix-ups (white space, comments, renaming); pwm_bl,
		gpio_backlight, qcom-wled
   - Kconfig dependency hacking; LCD_HP700
   - Rename, refactor and add peripherals; pm8941-wled => qcom-wled
   - Make use of GPIO look-up tables; tosa_bl, tosa_lcd
   - Remove superfluous code; gpio_backlight
   - Adapt GPIO direction handling; gpio_backlight
   - Remove legacy use of platform data; gpio_backlight

 - Bug Fixes
   - Provide modules aliases; lm3630a_bl

----------------------------------------------------------------
Andreas Kemnade (4):
      backlight: lm3630a: Fix module aliases
      dt-bindings: backlight: lm3630a: Add enable-gpios to describe HWEN pin
      backlight: lm3630a: Add an enable gpio for the HWEN pin
      dt-bindings: backlight: lm3630a: Fix missing include

Arnd Bergmann (1):
      video: backlight: tosa: Use GPIO lookup table

Bartosz Golaszewski (9):
      backlight: gpio: Remove unneeded include
      backlight: gpio: Remove stray newline
      backlight: gpio: Explicitly set the direction of the GPIO
      sh: ecovec24: add additional properties to the backlight device
      backlight: gpio: Simplify the platform data handling
      sh: ecovec24: don't set unused fields in platform data
      backlight: gpio: Remove unused fields from platform data
      backlight: gpio: Use a helper variable for &pdev->dev
      backlight: gpio: Pull gpio_backlight_initial_power_state() into probe

Colin Ian King (1):
      backlight: qcom-wled: Fix spelling mistake "trigged" -> "triggered"

Jean-Jacques Hiblot (1):
      dt-bindings: backlight: Add led-backlight binding

Kiran Gunda (8):
      backlight: qcom-wled: Rename pm8941-wled.c to qcom-wled.c
      backlight: qcom-wled: Restructure the qcom-wled bindings
      backlight: qcom-wled: Add new properties for PMI8998
      backlight: qcom-wled: Rename PM8941* to WLED3
      backlight: qcom-wled: Restructure the driver for WLED3
      backlight: qcom-wled: Add support for WLED4 peripheral
      backlight: qcom-wled: Add support for short circuit handling
      backlight: qcom-wled: Add auto string detection logic

Matthias Kaehlcke (2):
      backlight: pwm_bl: Don't assign levels table repeatedly
      backlight: pwm_bl: Add missing curly branches in else branch

Nishka Dasgupta (1):
      backlight: ipaq_micro: Make structure micro_bl_props constant

Rasmus Villemoes (4):
      backlight: pwm_bl: Fix cie1913 comments and constant
      backlight: pwm_bl: Eliminate a 64/32 division
      backlight: pwm_bl: Drop use of int_pow()
      backlight: pwm_bl: Switch to power-of-2 base for fixed-point math

Thomas Gleixner (1):
      backlight: Kconfig: jornada720: Use CONFIG_PREEMPTION

 .../bindings/leds/backlight/led-backlight.txt      |   28 +
 .../bindings/leds/backlight/lm3630a-backlight.yaml |    6 +
 .../bindings/leds/backlight/pm8941-wled.txt        |   42 -
 .../bindings/leds/backlight/qcom-wled.txt          |  154 +++
 arch/arm/mach-pxa/include/mach/tosa.h              |   15 -
 arch/arm/mach-pxa/tosa.c                           |   22 +
 arch/sh/boards/mach-ecovec24/setup.c               |   33 +-
 drivers/video/backlight/Kconfig                    |   12 +-
 drivers/video/backlight/Makefile                   |    2 +-
 drivers/video/backlight/gpio_backlight.c           |  128 +-
 drivers/video/backlight/ipaq_micro_bl.c            |    2 +-
 drivers/video/backlight/lm3630a_bl.c               |   13 +-
 drivers/video/backlight/pm8941-wled.c              |  424 -------
 drivers/video/backlight/pwm_bl.c                   |   39 +-
 drivers/video/backlight/qcom-wled.c                | 1296 ++++++++++++++++++++
 drivers/video/backlight/tosa_bl.c                  |   10 +-
 drivers/video/backlight/tosa_bl.h                  |    8 +
 drivers/video/backlight/tosa_lcd.c                 |   28 +-
 include/linux/platform_data/gpio_backlight.h       |    3 -
 19 files changed, 1653 insertions(+), 612 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/leds/backlight/led-backlight.txt
 delete mode 100644 Documentation/devicetree/bindings/leds/backlight/pm8941-wled.txt
 create mode 100644 Documentation/devicetree/bindings/leds/backlight/qcom-wled.txt
 delete mode 100644 drivers/video/backlight/pm8941-wled.c
 create mode 100644 drivers/video/backlight/qcom-wled.c

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

             reply	other threads:[~2019-11-28 14:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-11-28 14:45 Lee Jones [this message]
2019-12-02  2:05 ` [GIT PULL] Backlight for v5.5 pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191128144511.GA14416@dell \
    --to=lee.jones@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox