* Fix PS/2 keyboard problem caused by statically initialized variable
pointing to a location in flash
* Fix INCA-IP clock calculation: 400/3 = 133.3 MHz, not 130.
diff --git a/drivers/ps2ser.c b/drivers/ps2ser.c
index 71658d7..52f1db9 100644
--- a/drivers/ps2ser.c
+++ b/drivers/ps2ser.c
@@ -29,7 +29,7 @@
static void ps2ser_interrupt(void *dev_id);
extern struct serial_state rs_table[]; /* in serial.c */
-static struct serial_state *state = rs_table + CONFIG_PS2SERIAL;
+static struct serial_state *state;
static u_char ps2buf[PS2BUF_SIZE];
static atomic_t ps2buf_cnt;
@@ -49,8 +49,13 @@
int ps2ser_init(void)
{
- int quot = state->baud_base / PS2SER_BAUD;
- unsigned cval = 0x3; /* 8N1 - 8 data bits, no parity bits, 1 stop bit */
+ int quot;
+ unsigned cval;
+
+ state = rs_table + CONFIG_PS2SERIAL;
+
+ quot = state->baud_base / PS2SER_BAUD;
+ cval = 0x3; /* 8N1 - 8 data bits, no parity bits, 1 stop bit */
/* Set speed, enable interrupts, enable FIFO
*/