This set is comprised of a couple of small but important fixes and a number of clean-up and
refactoring patches. The fixes correct an EPROM address for the LP8556 and improve memory
allocation safety in the LED backlight driver.
The remainder of the set is made up of refactoring work to the mp3309c driver and a series of
patches to make a number of drivers more self-contained by including their own dependencies.
Improvements & Fixes
- Correct the EPROM start address for the LP8556 to align with the device's datasheet.
- Use devm_kcalloc() in the LED backlight driver for safer array allocation with overflow
protection.
Cleanups & Refactoring
- Drop an unnecessary call to pwm_apply_args() in the mp3309c driver.
- Modernize struct initialization in the mp3309c driver by using a compound literal instead of
memset.
- Make numerous drivers self-contained by including necessary headers directly rather than
relying on transitive includes from the core backlight header.
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEdrbJNaO+IJqU8IdIUa+KL4f8d2EFAmjdMyMACgkQUa+KL4f8
d2EDFw/+PxZ6X6FRcAxLPSKjbzes7amyFIidWIyJ1OVDEoY39sFlWkHtnApTKvEf
TyMkxyuGjxAGHsNG27JnJhcHuuaaS8bT0rm+dxoIgpLOXR1ySLlxDoKVIxggXjye
1UMwrWo9tk5NHXSRMGWgREXqM6FqOAmK0jplLPBGagnExfhecQkm+mX7S96DwG/h
FHirlcXMUrAZfXRdZeo8WOcLREtz/xTh6nPaihTjWxDk1RjXKykWD8AYw/ID24+R
6Vzng6MQ5MWC+fU6OfAGOuZQ+yECS2J3mfO5k1rv1OxUr1Wqm/CnvGxayiP654VI
NXVxkFSjL8R6pjONtFdPR8oegttiKj3x4mQNmQ1RQxd3lL44JElPUdEAc+Xfqjdf
YdUo1D1LtRHNAuiLJGvWKiIh6RT9whFY3ZxGY3Q8qTk6/slsU2/m+wuSVaMCI4uI
v9sfh8xCoA4GbAoF0SEYpqyzfZqFSsmNxLHHkmf41cgWutwgcGwjP5VFOobRxY5U
Um6V6NUSgr7Y8ju4tmTK717bBMvGCS+70KUbC/tvzr85b89Y8HNEoUhgZC/M7AU+
/bUytzsFUOAxog0UB08xo8DEIYIaB04o7KQRE0gUUb9K3kpr9MQpWectR2921wIN
FC8tndjHjLkTfWW9DcsSbwkZW+K65uanqQE9OGaVG8QcZut2rG8=
=ztY1
-----END PGP SIGNATURE-----
Merge tag 'backlight-next-6.18' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight
Pull backlight updates from Lee Jones:
"This set is comprised of a couple of small but important fixes and a
number of clean-up and refactoring patches. The fixes correct an EPROM
address for the LP8556 and improve memory allocation safety in the LED
backlight driver.
The remainder of the set is made up of refactoring work to the mp3309c
driver and a series of patches to make a number of drivers more
self-contained by including their own dependencies.
Improvements & Fixes:
- Correct the EPROM start address for the LP8556 to align with the
device's datasheet.
- Use devm_kcalloc() in the LED backlight driver for safer array
allocation with overflow protection.
Cleanups & Refactoring
- Drop an unnecessary call to pwm_apply_args() in the mp3309c driver.
- Modernize struct initialization in the mp3309c driver by using a
compound literal instead of memset.
- Make numerous drivers self-contained by including necessary headers
directly rather than relying on transitive includes from the core
backlight header"
* tag 'backlight-next-6.18' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight:
backlight: rt4831: Include <linux/mod_devicetable.h>
backlight: rave-sp: Include <linux/of.h> and <linux/mod_devicetable.h>
backlight: led_bl: Include <linux/of.h>
backlight: ktd2801: Include <linux/mod_devicetable.h>
backlight: jornada720: Include <linux/io.h>
backlight: da9052_bl: Include <linux/mod_devicetable.h>
backlight: as3711_bl: Include <linux/of.h>
backlight: apple_dwi_bl: Include <linux/mod_devicetable.h>
backlight: Include <linux/of.h>
video: backlight: lp855x_bl: Set correct EPROM start for LP8556
backlight: led_bl: Use devm_kcalloc() for array space allocation
backlight: mp3309c: Initialize backlight properties without memset
backlight: mp3309c: Drop pwm_apply_args()