Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e67beb37df7a9da9d5d1e59c5358654d007a97c5
Commit:     e67beb37df7a9da9d5d1e59c5358654d007a97c5
Parent:     671adbec210efc15cef81b4616adae8bcd667296
Author:     Len Brown <[EMAIL PROTECTED]>
AuthorDate: Thu Dec 7 04:17:35 2006 -0500
Committer:  Len Brown <[EMAIL PROTECTED]>
CommitDate: Thu Dec 7 04:17:35 2006 -0500

    ACPI: dock: fix build warning
    
    drivers/acpi/dock.c:689: warning: too many arguments for format
    
    Signed-off-by: Len Brown <[EMAIL PROTECTED]>
---
 drivers/acpi/dock.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/acpi/dock.c b/drivers/acpi/dock.c
index 336d94c..2c2f28d 100644
--- a/drivers/acpi/dock.c
+++ b/drivers/acpi/dock.c
@@ -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;
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to