[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>
This commit is contained in:
Olaf Hering
2007-02-10 21:35:12 +01:00
committed by Paul Mackerras
parent 9ea8b7c96f
commit 872758563d
9 changed files with 24 additions and 25 deletions

View File

@@ -107,10 +107,10 @@ static enum macii_state {
awaiting_reply
} macii_state;
static int need_poll = 0;
static int command_byte = 0;
static int last_reply = 0;
static int last_active = 0;
static int need_poll;
static int command_byte;
static int last_reply;
static int last_active;
static struct adb_request *current_req;
static struct adb_request *last_req;
@@ -124,7 +124,7 @@ static int first_byte;
static int prefix_len;
static int status = ST_IDLE|TREQ;
static int last_status;
static int driver_running = 0;
static int driver_running;
/* debug level 10 required for ADB logging (should be && debug_adb, ideally) */