diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2009-01-06 13:44:37 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-06 13:44:37 -0500 |
commit | 35f74fcab1228be03eab5f4d21ddc89fca1bc5b8 (patch) | |
tree | 90accbaacafe47adc265c8fd414d4a1a058ca593 /drivers/spi/spi_bitbang.c | |
parent | 94b324864ef2a8e461f3933ab99638255299e9f0 (diff) |
spi: struct device - replace bus_id with dev_name(), dev_set_name()
Acked-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Kay Sievers <kay.sievers@vrfy.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/spi/spi_bitbang.c')
-rw-r--r-- | drivers/spi/spi_bitbang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi_bitbang.c b/drivers/spi/spi_bitbang.c index 96cc39ecb6e2..85e61f451218 100644 --- a/drivers/spi/spi_bitbang.c +++ b/drivers/spi/spi_bitbang.c | |||
@@ -475,7 +475,7 @@ int spi_bitbang_start(struct spi_bitbang *bitbang) | |||
475 | /* this task is the only thing to touch the SPI bits */ | 475 | /* this task is the only thing to touch the SPI bits */ |
476 | bitbang->busy = 0; | 476 | bitbang->busy = 0; |
477 | bitbang->workqueue = create_singlethread_workqueue( | 477 | bitbang->workqueue = create_singlethread_workqueue( |
478 | bitbang->master->dev.parent->bus_id); | 478 | dev_name(bitbang->master->dev.parent)); |
479 | if (bitbang->workqueue == NULL) { | 479 | if (bitbang->workqueue == NULL) { |
480 | status = -EBUSY; | 480 | status = -EBUSY; |
481 | goto err1; | 481 | goto err1; |