diff options
author | Barnabás Pőcze <pobrn@protonmail.com> | 2021-09-04 20:55:06 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-09-14 13:26:00 +0300 |
commit | 9bf9ca95a16e0b9865ea09199fd6342f7f8ca049 (patch) | |
tree | 1139bcc631c156144b364116925104e42dbbd57e /drivers/platform/x86/wmi.c | |
parent | cd3e3d294e52480f132c0935b99d6d86e2310525 (diff) | |
download | linux-9bf9ca95a16e0b9865ea09199fd6342f7f8ca049.tar.xz |
platform/x86: wmi: remove unnecessary initialization
The empty initializer `{ }` is enough to properly initialize
the terminating acpi_device_id entry in the device table,
so use that.
Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com>
Link: https://lore.kernel.org/r/20210904175450.156801-5-pobrn@protonmail.com
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform/x86/wmi.c')
-rw-r--r-- | drivers/platform/x86/wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c index 67c09d81a676..6ad5962da59b 100644 --- a/drivers/platform/x86/wmi.c +++ b/drivers/platform/x86/wmi.c @@ -91,7 +91,7 @@ static int acpi_wmi_probe(struct platform_device *device); static const struct acpi_device_id wmi_device_ids[] = { {"PNP0C14", 0}, {"pnp0c14", 0}, - {"", 0}, + { } }; MODULE_DEVICE_TABLE(acpi, wmi_device_ids); |