Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f7b88ccb63188e775fe02e746c39ed177741cfc7
Commit:     f7b88ccb63188e775fe02e746c39ed177741cfc7
Parent:     11604ecf6fb9c2ab0152fbddb7ea2724438ef76e
Author:     Eugene Teo <[EMAIL PROTECTED]>
AuthorDate: Sat Aug 4 00:22:32 2007 +0900
Committer:  Len Brown <[EMAIL PROTECTED]>
CommitDate: Fri Aug 3 15:26:41 2007 -0400

    sonypi: fix ids member of struct acpi_driver
    
    ids member of struct acpi_driver is of type struct acpi_device_id, not a
    character array.
    
    Signed-off-by: Eugene Teo <[EMAIL PROTECTED]>
    Signed-off-by: Mattia Dongili <[EMAIL PROTECTED]>
    Signed-off-by: Len Brown <[EMAIL PROTECTED]>
---
 drivers/char/sonypi.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
index 73037a4..aeec67e 100644
--- a/drivers/char/sonypi.c
+++ b/drivers/char/sonypi.c
@@ -1147,10 +1147,15 @@ static int sonypi_acpi_remove(struct acpi_device 
*device, int type)
        return 0;
 }
 
+const static struct acpi_device_id sonypi_device_ids[] = {
+       {"SNY6001", 0},
+       {"", 0},
+};
+
 static struct acpi_driver sonypi_acpi_driver = {
        .name           = "sonypi",
        .class          = "hkey",
-       .ids            = "SNY6001",
+       .ids            = sonypi_device_ids,
        .ops            = {
                           .add = sonypi_acpi_add,
                           .remove = sonypi_acpi_remove,
-
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