Lars-Peter Clausen aa523a82ee 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>
2012-05-29 16:22:28 -07:00
..
2012-03-28 13:56:35 -07:00
2011-03-22 17:43:59 -07:00
2012-01-10 16:30:48 -08:00
2011-03-22 17:43:59 -07:00
2011-03-22 17:43:59 -07:00
2012-01-10 16:30:48 -08:00
2011-03-22 17:43:59 -07:00
2012-03-28 17:14:37 -07:00