Rev 625 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 625 | Rev 958 | ||
---|---|---|---|
Line 110... | Line 110... | ||
110 | .read = serial_do_read |
110 | .read = serial_do_read |
111 | }; |
111 | }; |
112 | 112 | ||
113 | iroutine old_timer; |
113 | iroutine old_timer; |
114 | /** Do polling on timer interrupt */ |
114 | /** Do polling on timer interrupt */ |
115 | static void timer_replace(int n, void *stack) |
115 | static void timer_replace(int n, istate_t *istate) |
116 | { |
116 | { |
117 | old_timer(n, stack); |
117 | old_timer(n, istate); |
118 | serial_interrupt(n, stack); |
118 | serial_interrupt(n, istate); |
119 | } |
119 | } |
120 | 120 | ||
121 | void serial_console(void) |
121 | void serial_console(void) |
122 | { |
122 | { |
123 | serial_t *sd = &sconf[0]; |
123 | serial_t *sd = &sconf[0]; |