diff options
author | Jiri Kosina | 2014-06-03 13:29:38 +0200 |
---|---|---|
committer | Jiri Kosina | 2014-06-03 13:29:38 +0200 |
commit | e4aecaf2f53bc6635b484ee2f1b8a1e4c73e7997 (patch) | |
tree | a2877810975f5207bac6ef598a4bc4a110f7b3b3 /drivers/hid | |
parent | 3121b1c44d0748f0286fd05b89a76232f40d1091 (diff) |
HID: thingm: thingm_fwinfo[] doesn't need to be global
No need to pollute global namespace by thingm_fwinfo[]. Make it static.
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-thingm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-thingm.c b/drivers/hid/hid-thingm.c index 31de890d14cf..134be89b15ea 100644 --- a/drivers/hid/hid-thingm.c +++ b/drivers/hid/hid-thingm.c @@ -31,7 +31,7 @@ struct thingm_fwinfo { unsigned first; }; -const struct thingm_fwinfo thingm_fwinfo[] = { +static const struct thingm_fwinfo thingm_fwinfo[] = { { .major = THINGM_MAJOR_MK1, .numrgb = 1, |