Skip to content

Commit

Permalink
ACPI: dock: fix build warning
Browse files Browse the repository at this point in the history
drivers/acpi/dock.c:689: warning: too many arguments for format

Signed-off-by: Len Brown <[email protected]>
  • Loading branch information
lenb committed Dec 7, 2006
1 parent 671adbe commit e67beb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/acpi/dock.c
Original file line number Diff line number Diff line change
Expand Up @@ -636,7 +636,7 @@ static int dock_add(acpi_handle handle)
dock_device.name = dock_device_name;
ret = platform_device_register(&dock_device);
if (ret) {
printk(KERN_ERR PREFIX "Error registering dock device\n", ret);
printk(KERN_ERR PREFIX "Error %d registering dock device\n", ret);
kfree(dock_station);
return ret;
}
Expand Down

0 comments on commit e67beb3

Please sign in to comment.