ACPI / scan: constify ACPI device ids
Make the button ACPI device ID array static const. Safes us a little bit of code. Signed-off-by: Mathias Krause <minipli@googlemail.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
ee89209402
commit
0519ade718
1 changed files with 1 additions and 1 deletions
|
@ -1673,7 +1673,7 @@ static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
|
||||||
|
|
||||||
static void acpi_wakeup_gpe_init(struct acpi_device *device)
|
static void acpi_wakeup_gpe_init(struct acpi_device *device)
|
||||||
{
|
{
|
||||||
struct acpi_device_id button_device_ids[] = {
|
static const struct acpi_device_id button_device_ids[] = {
|
||||||
{"PNP0C0C", 0},
|
{"PNP0C0C", 0},
|
||||||
{"PNP0C0D", 0},
|
{"PNP0C0D", 0},
|
||||||
{"PNP0C0E", 0},
|
{"PNP0C0E", 0},
|
||||||
|
|
Loading…
Add table
Reference in a new issue