diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-03-07 17:41:07 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-02 02:41:36 -0400 |
commit | f3e5d2bf52514bb92b46bf866d20cc53bbbeb0fb (patch) | |
tree | b1b072b10db5e0fe1fd21abdf6a383f24c8d1cac /drivers/macintosh | |
parent | a3cf4bdef090530cf2e07dcd45265107db6e4752 (diff) |
[POWERPC] drivers/macintosh/mac_hid.c: Make code static
This patch makes some needlessly global code static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/macintosh')
-rw-r--r-- | drivers/macintosh/mac_hid.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/macintosh/mac_hid.c b/drivers/macintosh/mac_hid.c index 1599dc34f15f..76c1e8e4a487 100644 --- a/drivers/macintosh/mac_hid.c +++ b/drivers/macintosh/mac_hid.c | |||
@@ -24,7 +24,7 @@ static int mouse_last_keycode; | |||
24 | 24 | ||
25 | #if defined(CONFIG_SYSCTL) | 25 | #if defined(CONFIG_SYSCTL) |
26 | /* file(s) in /proc/sys/dev/mac_hid */ | 26 | /* file(s) in /proc/sys/dev/mac_hid */ |
27 | ctl_table mac_hid_files[] = { | 27 | static ctl_table mac_hid_files[] = { |
28 | { | 28 | { |
29 | .ctl_name = DEV_MAC_HID_MOUSE_BUTTON_EMULATION, | 29 | .ctl_name = DEV_MAC_HID_MOUSE_BUTTON_EMULATION, |
30 | .procname = "mouse_button_emulation", | 30 | .procname = "mouse_button_emulation", |
@@ -53,7 +53,7 @@ ctl_table mac_hid_files[] = { | |||
53 | }; | 53 | }; |
54 | 54 | ||
55 | /* dir in /proc/sys/dev */ | 55 | /* dir in /proc/sys/dev */ |
56 | ctl_table mac_hid_dir[] = { | 56 | static ctl_table mac_hid_dir[] = { |
57 | { | 57 | { |
58 | .ctl_name = DEV_MAC_HID, | 58 | .ctl_name = DEV_MAC_HID, |
59 | .procname = "mac_hid", | 59 | .procname = "mac_hid", |
@@ -65,7 +65,7 @@ ctl_table mac_hid_dir[] = { | |||
65 | }; | 65 | }; |
66 | 66 | ||
67 | /* /proc/sys/dev itself, in case that is not there yet */ | 67 | /* /proc/sys/dev itself, in case that is not there yet */ |
68 | ctl_table mac_hid_root_dir[] = { | 68 | static ctl_table mac_hid_root_dir[] = { |
69 | { | 69 | { |
70 | .ctl_name = CTL_DEV, | 70 | .ctl_name = CTL_DEV, |
71 | .procname = "dev", | 71 | .procname = "dev", |
@@ -127,7 +127,7 @@ static int emumousebtn_input_register(void) | |||
127 | return ret; | 127 | return ret; |
128 | } | 128 | } |
129 | 129 | ||
130 | int __init mac_hid_init(void) | 130 | static int __init mac_hid_init(void) |
131 | { | 131 | { |
132 | int err; | 132 | int err; |
133 | 133 | ||