]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
blacklight: remove redundant spi driver bus initialization
authorLars-Peter Clausen <lars@metafoo.de>
Tue, 29 May 2012 22:07:12 +0000 (15:07 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 29 May 2012 23:22:28 +0000 (16:22 -0700)
commitaa523a82ee1be3f50560338e06151918fd8613e7
tree57a4d9008fdc70c94e12fe9ff7a25334ac88189e
parent4cb70c2d8f1d1925288bf3775ea032a0c4eff0fa
blacklight: remove redundant spi driver bus initialization

In ancient times it was necessary to manually initialize the bus field of
an spi_driver to spi_bus_type.  These days this is done in
spi_driver_register() so we can drop the manual assignment.

The patch was generated using the following coccinelle semantic patch:
// <smpl>
@@
identifier _driver;
@@
struct spi_driver _driver = {
.driver = {
- .bus = &spi_bus_type,
},
};
// </smpl>

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/video/backlight/ams369fg06.c
drivers/video/backlight/ld9040.c
drivers/video/backlight/ltv350qv.c
drivers/video/backlight/s6e63m0.c