diff options
Diffstat (limited to 'cpu/arm720t/serial.c')
| -rw-r--r-- | cpu/arm720t/serial.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/cpu/arm720t/serial.c b/cpu/arm720t/serial.c index d38ac3947..5c6a0cc55 100644 --- a/cpu/arm720t/serial.c +++ b/cpu/arm720t/serial.c @@ -31,6 +31,8 @@  #include <common.h>  #include <clps7111.h> +#ifndef CONFIG_NETARM +  void serial_setbrg (void)  {  	DECLARE_GLOBAL_DATA_PTR; @@ -124,3 +126,5 @@ serial_puts (const char *s)  		serial_putc (*s++);  	}  } + +#endif /* CONFIG_NETARM */ |