diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-06-23 13:46:57 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-06-30 21:28:06 -0400 |
commit | 9b4a8dd2e9f8af206eb39e3d99c442b0d6158953 (patch) | |
tree | fcdb929187809ec1dcc7eb3468ecc0d527899041 /drivers/macintosh/via-pmu68k.c | |
parent | f0c426bc3557a93e9d2f2863fda1e2042f942a60 (diff) |
drivers/macintosh: Various cleanups
This contains the following cleanups:
- make the following needlessly global code static:
- adb.c: adb_controller
- adb.c: adb_init()
- adbhid.c: adb_to_linux_keycodes[] (also make it const)
- via-pmu68k.c: backlight_level
- via-pmu68k.c: backlight_enabled
- remove the following unused code:
- via-pmu68k.c: sleep_notifier_list
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/macintosh/via-pmu68k.c')
-rw-r--r-- | drivers/macintosh/via-pmu68k.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/macintosh/via-pmu68k.c b/drivers/macintosh/via-pmu68k.c index e2f84da09e7c..b64741c95ac4 100644 --- a/drivers/macintosh/via-pmu68k.c +++ b/drivers/macintosh/via-pmu68k.c | |||
@@ -101,7 +101,6 @@ static int pmu_kind = PMU_UNKNOWN; | |||
101 | static int pmu_fully_inited; | 101 | static int pmu_fully_inited; |
102 | 102 | ||
103 | int asleep; | 103 | int asleep; |
104 | BLOCKING_NOTIFIER_HEAD(sleep_notifier_list); | ||
105 | 104 | ||
106 | static int pmu_probe(void); | 105 | static int pmu_probe(void); |
107 | static int pmu_init(void); | 106 | static int pmu_init(void); |
@@ -741,8 +740,8 @@ pmu_handle_data(unsigned char *data, int len) | |||
741 | } | 740 | } |
742 | } | 741 | } |
743 | 742 | ||
744 | int backlight_level = -1; | 743 | static int backlight_level = -1; |
745 | int backlight_enabled = 0; | 744 | static int backlight_enabled = 0; |
746 | 745 | ||
747 | #define LEVEL_TO_BRIGHT(lev) ((lev) < 1? 0x7f: 0x4a - ((lev) << 1)) | 746 | #define LEVEL_TO_BRIGHT(lev) ((lev) < 1? 0x7f: 0x4a - ((lev) << 1)) |
748 | 747 | ||