summaryrefslogtreecommitdiff
path: root/firmware/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/debug.c')
-rw-r--r--firmware/debug.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/firmware/debug.c b/firmware/debug.c
index e3be2de168..33b55a5c41 100644
--- a/firmware/debug.c
+++ b/firmware/debug.c
@@ -32,9 +32,10 @@ static char debugbuf[200];
32#include "kernel.h" 32#include "kernel.h"
33#include "system.h" 33#include "system.h"
34 34
35#ifdef DEBUG
36#if CONFIG_CPU == SH7034 /* these are still very SH-oriented */
35void debug_init(void) 37void debug_init(void)
36{ 38{
37#if CONFIG_CPU == SH7034
38 /* Clear it all! */ 39 /* Clear it all! */
39 SSR1 &= ~(SCI_RDRF | SCI_ORER | SCI_PER | SCI_FER); 40 SSR1 &= ~(SCI_RDRF | SCI_ORER | SCI_PER | SCI_FER);
40 41
@@ -43,11 +44,8 @@ void debug_init(void)
43 SCR1 |= 0x40; 44 SCR1 |= 0x40;
44 SCR1 &= ~0x80; 45 SCR1 &= ~0x80;
45 IPRE |= 0xf000; /* Set to highest priority */ 46 IPRE |= 0xf000; /* Set to highest priority */
46#endif
47} 47}
48 48
49#ifdef DEBUG
50#if CONFIG_CPU == SH7034 /* these are still very SH-oriented */
51static int debug_tx_ready(void) 49static int debug_tx_ready(void)
52{ 50{
53 return (SSR1 & SCI_TDRE); 51 return (SSR1 & SCI_TDRE);