Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f7b88ccb authored by Eugene Teo's avatar Eugene Teo Committed by Len Brown
Browse files

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: default avatarEugene Teo <eugeneteo@kernel.sg>
Signed-off-by: default avatarMattia Dongili <malattia@linux.it>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 11604ecf
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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,