Prev: [PATCH] classmate-laptop: make needlessly global symbols static
Next: [PATCH] lvs sctp protocol handler is incorrectly invoked ip_vs_app_pkt_out
From: Axel Lin on 7 Jul 2010 22:00 backlight is needlessly defined global. This patch makes the symbol static. Signed-off-by: Axel Lin <axel.lin(a)gmail.com> --- 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 d173600..42a5469 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[] = { }; static ktime_t last_pressed[ARRAY_SIZE(msi_wmi_keymap) - 1]; -struct backlight_device *backlight; +static struct backlight_device *backlight; static int backlight_map[] = { 0x00, 0x33, 0x66, 0x99, 0xCC, 0xFF }; -- 1.5.4.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |