spi: Fix device unregistration when unregistering the bus master
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 12 Dec 2011 00:15:06 +0000 (01:15 +0100)
committerGrant Likely <grant.likely@secretlab.ca>
Tue, 13 Dec 2011 23:45:35 +0000 (16:45 -0700)
commit178db7d30f94707efca1a189753c105ef69942ed
tree088865bdd59288f626984e4191b636cabec8c439
parentdc47ce90c3a822cd7c9e9339fe4d5f61dcb26b50
spi: Fix device unregistration when unregistering the bus master

Device are added as children of the bus master's parent device, but
spi_unregister_master() looks for devices to unregister in the bus
master's children. This results in the child devices not being
unregistered.

Fix this by registering devices as direct children of the bus master.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
drivers/spi/spi.c