提交 178db7d3 编写于 作者: L Laurent Pinchart 提交者: Grant Likely

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: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: NGrant Likely <grant.likely@secretlab.ca>
上级 dc47ce90
...@@ -319,7 +319,7 @@ struct spi_device *spi_alloc_device(struct spi_master *master) ...@@ -319,7 +319,7 @@ struct spi_device *spi_alloc_device(struct spi_master *master)
} }
spi->master = master; spi->master = master;
spi->dev.parent = dev; spi->dev.parent = &master->dev;
spi->dev.bus = &spi_bus_type; spi->dev.bus = &spi_bus_type;
spi->dev.release = spidev_release; spi->dev.release = spidev_release;
device_initialize(&spi->dev); device_initialize(&spi->dev);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册