From d6d04c62b9b54096a4c7426e77edfd6920cc3915 Mon Sep 17 00:00:00 2001 From: Eugene Teo Date: Sat, 4 Aug 2007 00:22:32 +0900 Subject: [PATCH] --- yaml --- r: 63937 b: refs/heads/master c: f7b88ccb63188e775fe02e746c39ed177741cfc7 h: refs/heads/master i: 63935: ba2833d56763a5de6a0e10ea21fcf88f9bd5cb12 v: v3 --- [refs] | 2 +- trunk/drivers/char/sonypi.c | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/[refs] b/[refs] index 07c5fcfadb9d..f6efe787905b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 11604ecf6fb9c2ab0152fbddb7ea2724438ef76e +refs/heads/master: f7b88ccb63188e775fe02e746c39ed177741cfc7 diff --git a/trunk/drivers/char/sonypi.c b/trunk/drivers/char/sonypi.c index 73037a4d3c50..aeec67e27264 100644 --- a/trunk/drivers/char/sonypi.c +++ b/trunk/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,