diff options
| author | Olaf Hering <olaf@aepfle.de> | 2007-02-10 21:35:12 +0100 | 
|---|---|---|
| committer | Paul Mackerras <paulus@samba.org> | 2007-02-13 15:35:52 +1100 | 
| commit | 872758563d7f132d25fc06857bd19df06c5c70c7 (patch) | |
| tree | af3b813f7e3e0ebd372ac4dfb4a2d865a8ef27e4 /drivers/macintosh/apm_emu.c | |
| parent | 9ea8b7c96f64f68548976ba65062cee2f2b7d831 (diff) | |
| download | olio-linux-3.10-872758563d7f132d25fc06857bd19df06c5c70c7.tar.xz olio-linux-3.10-872758563d7f132d25fc06857bd19df06c5c70c7.zip  | |
[POWERPC] move variables in drivers/macintosh to bss
Move all the initialized variables to bss.
Mark a version string as const.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/macintosh/apm_emu.c')
| -rw-r--r-- | drivers/macintosh/apm_emu.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/macintosh/apm_emu.c b/drivers/macintosh/apm_emu.c index a6d50f4fabd..c5e4d43f97f 100644 --- a/drivers/macintosh/apm_emu.c +++ b/drivers/macintosh/apm_emu.c @@ -102,7 +102,7 @@ static struct pmu_sleep_notifier apm_sleep_notifier = {  	SLEEP_LEVEL_USERLAND,  }; -static char			driver_version[] = "0.5";	/* no spaces */ +static const char driver_version[] = "0.5";	/* no spaces */  #ifdef DEBUG  static char *	apm_event_name[] = {  |