|
@@ -1147,10 +1147,15 @@ static int sonypi_acpi_remove(struct acpi_device *device, int type)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+const static struct acpi_device_id sonypi_device_ids[] = {
|
|
|
|
+ {"SNY6001", 0},
|
|
|
|
+ {"", 0},
|
|
|
|
+};
|
|
|
|
+
|
|
static struct acpi_driver sonypi_acpi_driver = {
|
|
static struct acpi_driver sonypi_acpi_driver = {
|
|
.name = "sonypi",
|
|
.name = "sonypi",
|
|
.class = "hkey",
|
|
.class = "hkey",
|
|
- .ids = "SNY6001",
|
|
|
|
|
|
+ .ids = sonypi_device_ids,
|
|
.ops = {
|
|
.ops = {
|
|
.add = sonypi_acpi_add,
|
|
.add = sonypi_acpi_add,
|
|
.remove = sonypi_acpi_remove,
|
|
.remove = sonypi_acpi_remove,
|