diff options
| author | Greg Kroah-Hartman <[email protected]> | 2008-05-02 04:02:41 +0000 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2008-07-22 04:54:53 +0000 |
| commit | fc3a8828b139c24aade3f9d608775e36c248f8f5 (patch) | |
| tree | e995fdb99868b96e6c51c100fe9270a79323fd83 /drivers/acpi/scan.c | |
| parent | driver core: remove DEVICE_ID_SIZE define (diff) | |
| download | kernel-fc3a8828b139c24aade3f9d608775e36c248f8f5.tar.gz kernel-fc3a8828b139c24aade3f9d608775e36c248f8f5.zip | |
driver core: fix a lot of printk usages of bus_id
We have the dev_printk() variants for this kind of thing, use them
instead of directly trying to access the bus_id field of struct device.
This is done in order to remove bus_id entirely.
Cc: Kay Sievers <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/acpi/scan.c')
| -rw-r--r-- | drivers/acpi/scan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index f3132aa47a69..f6f52c1a2aba 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c @@ -471,7 +471,7 @@ static int acpi_device_register(struct acpi_device *device, device->dev.release = &acpi_device_release; result = device_add(&device->dev); if(result) { - printk(KERN_ERR PREFIX "Error adding device %s", device->dev.bus_id); + dev_err(&device->dev, "Error adding device\n"); goto end; } |
