diff options
| author | Axel Lin <axel.lin@gmail.com> | 2010-07-07 21:50:30 -0400 |
|---|---|---|
| committer | Matthew Garrett <mjg@redhat.com> | 2010-08-03 09:49:10 -0400 |
| commit | 8700e1612e19f752be507f7fdcd8b48ba1b425ee (patch) | |
| tree | 6c8e84ef362f4e4617dfa637e1f9d25460627b56 | |
| parent | 6c3f6e6c575a0a992429427d4978c6091756a526 (diff) | |
msi-wmi: make needlessly global symbols static
backlight is needlessly defined global.
This patch makes the symbol static.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Anisse Astier <anisse@astier.eu>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
| -rw-r--r-- | drivers/platform/x86/msi-wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/msi-wmi.c b/drivers/platform/x86/msi-wmi.c index d1736009636f..42a5469a2459 100644 --- a/drivers/platform/x86/msi-wmi.c +++ b/drivers/platform/x86/msi-wmi.c | |||
| @@ -57,7 +57,7 @@ static struct key_entry msi_wmi_keymap[] = { | |||
| 57 | }; | 57 | }; |
| 58 | static ktime_t last_pressed[ARRAY_SIZE(msi_wmi_keymap) - 1]; | 58 | static ktime_t last_pressed[ARRAY_SIZE(msi_wmi_keymap) - 1]; |
| 59 | 59 | ||
| 60 | struct backlight_device *backlight; | 60 | static struct backlight_device *backlight; |
| 61 | 61 | ||
| 62 | static int backlight_map[] = { 0x00, 0x33, 0x66, 0x99, 0xCC, 0xFF }; | 62 | static int backlight_map[] = { 0x00, 0x33, 0x66, 0x99, 0xCC, 0xFF }; |
| 63 | 63 | ||
