diff options
author | Mathias Krause <[email protected]> | 2014-07-16 19:43:08 +0200 |
---|---|---|
committer | Matthew Garrett <[email protected]> | 2014-08-16 01:23:52 -0700 |
commit | 55d1e9d83dd7ba3a6f28241dfac90f07af10d4f4 (patch) | |
tree | 735d7e13624f479b73c9ad924c77572222ee3ece | |
parent | d997d88edff9f47f4939560823f656432d8bc821 (diff) |
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 <[email protected]>
Cc: Corentin Chary <[email protected]>
Signed-off-by: Matthew Garrett <[email protected]>
-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", |