diff options
author | Mathias Krause <minipli@googlemail.com> | 2014-07-16 19:43:08 +0200 |
---|---|---|
committer | Matthew Garrett <matthew.garrett@nebula.com> | 2014-08-16 01:23:52 -0700 |
commit | 55d1e9d83dd7ba3a6f28241dfac90f07af10d4f4 (patch) | |
tree | 735d7e13624f479b73c9ad924c77572222ee3ece | |
parent | d997d88edff9f47f4939560823f656432d8bc821 (diff) | |
download | linux-stable-55d1e9d83dd7ba3a6f28241dfac90f07af10d4f4.tar.gz linux-stable-55d1e9d83dd7ba3a6f28241dfac90f07af10d4f4.tar.bz2 linux-stable-55d1e9d83dd7ba3a6f28241dfac90f07af10d4f4.zip |
asus-nb-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/asus-nb-wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/asus-nb-wmi.c b/drivers/platform/x86/asus-nb-wmi.c index c5da5b7c4a10..f3af2032e415 100644 --- a/drivers/platform/x86/asus-nb-wmi.c +++ b/drivers/platform/x86/asus-nb-wmi.c @@ -84,7 +84,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. X401U", |