9
0
Fork 0

spi: Reuse "driver_match" for SPI bus

This will allow to use device_ids and make code a bit smaller.

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Alexander Shiyan 2013-07-12 00:23:29 +04:00 committed by Sascha Hauer
parent 7bc400d14c
commit 4802ed1489
1 changed files with 1 additions and 10 deletions

View File

@ -289,15 +289,6 @@ int spi_write_then_read(struct spi_device *spi,
}
EXPORT_SYMBOL(spi_write_then_read);
static int spi_match(struct device_d *dev, struct driver_d *drv)
{
if (IS_ENABLED(CONFIG_OFDEVICE) && dev->device_node &&
drv->of_compatible)
return of_match(dev, drv);
return strcmp(dev->name, drv->name) ? -1 : 0;
}
static int spi_probe(struct device_d *dev)
{
return dev->driver->probe(dev);
@ -310,7 +301,7 @@ static void spi_remove(struct device_d *dev)
struct bus_type spi_bus = {
.name = "spi",
.match = spi_match,
.match = device_match,
.probe = spi_probe,
.remove = spi_remove,
};