diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-10-15 22:05:17 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-16 11:21:51 -0700 |
commit | 88429a105e8c810d9cc9a4ff82cd571816e9858e (patch) | |
tree | c6367ec01b4a8425e4a5a3891dd57ea8e054d8b5 | |
parent | 6d97e2345a03bcf15471fc7e93560fc71e0c11d8 (diff) | |
download | linux-3.10-88429a105e8c810d9cc9a4ff82cd571816e9858e.tar.gz linux-3.10-88429a105e8c810d9cc9a4ff82cd571816e9858e.tar.bz2 linux-3.10-88429a105e8c810d9cc9a4ff82cd571816e9858e.zip |
make hp_wmi_notify() static
Make the needlessly global hp_wmi_notify() static.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | drivers/misc/hp-wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/hp-wmi.c b/drivers/misc/hp-wmi.c index 6d407c2a4f9..5dabfb69ee5 100644 --- a/drivers/misc/hp-wmi.c +++ b/drivers/misc/hp-wmi.c @@ -309,7 +309,7 @@ static int hp_wmi_setkeycode(struct input_dev *dev, int scancode, int keycode) return -EINVAL; } -void hp_wmi_notify(u32 value, void *context) +static void hp_wmi_notify(u32 value, void *context) { struct acpi_buffer response = { ACPI_ALLOCATE_BUFFER, NULL }; static struct key_entry *key; |