summaryrefslogtreecommitdiff
path: root/firmware/target/sh
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/sh')
-rw-r--r--firmware/target/sh/archos/uart-archos.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/sh/archos/uart-archos.c b/firmware/target/sh/archos/uart-archos.c
index 14fea943b3..d17678f812 100644
--- a/firmware/target/sh/archos/uart-archos.c
+++ b/firmware/target/sh/archos/uart-archos.c
@@ -65,7 +65,7 @@ int tx_rdy(void)
65 return 1; 65 return 1;
66} 66}
67 67
68int rx_rdy(void) 68static int rx_rdy(void)
69{ 69{
70 if(SSR1 & SCI_RDRF) 70 if(SSR1 & SCI_RDRF)
71 return 1; 71 return 1;
@@ -79,7 +79,7 @@ void tx_writec(unsigned char c)
79 (void)c; 79 (void)c;
80} 80}
81 81
82unsigned char rx_readc(void) 82static unsigned char rx_readc(void)
83{ 83{
84 char tmp; 84 char tmp;
85 /* Read byte and clear the Rx Full bit */ 85 /* Read byte and clear the Rx Full bit */