diff options
author | Mathias Krause <minipli@googlemail.com> | 2014-07-16 19:43:10 +0200 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2014-08-16 01:23:52 -0700 |
commit | 7e6c227cebeee59ffe37bccde698ad45f6210ef0 (patch) | |
tree | bf792660ad23e60df85d8b01d5d956a4886a1b66 | |
parent | 76d51dd9a07abcfaf1e3fe67a9656238a89b771f (diff) | |
download | linux-7e6c227cebeee59ffe37bccde698ad45f6210ef0.tar.gz linux-7e6c227cebeee59ffe37bccde698ad45f6210ef0.tar.bz2 linux-7e6c227cebeee59ffe37bccde698ad45f6210ef0.zip |
eeepc-wmi: Constify asus_quirks[] DMI table
Constify the asus_quirks[] DMI table. There's no need to have it
writeable during runtime.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Cc: Corentin Chary <corentin.chary@gmail.com>
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
-rw-r--r-- | drivers/platform/x86/eeepc-wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/eeepc-wmi.c b/drivers/platform/x86/eeepc-wmi.c index 6112933f6278..14fd2ecb06a1 100644 --- a/drivers/platform/x86/eeepc-wmi.c +++ b/drivers/platform/x86/eeepc-wmi.c @@ -145,7 +145,7 @@ static int dmi_matched(const struct dmi_system_id *dmi) return 1; } -static struct dmi_system_id asus_quirks[] = { +static const struct dmi_system_id asus_quirks[] = { { .callback = dmi_matched, .ident = "ASUSTeK Computer INC. 1000H", |