From 9b5f56ba5bac0c0d016fa220563bb06e6841d4de Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 18 Oct 2017 14:07:52 -0600 Subject: [PATCH] BCM2708: The PiZero configuration now compiles and links cleanly. Still a few thngs missing internally. --- arch/arm/src/bcm2708/bcm_miniuart.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/src/bcm2708/bcm_miniuart.c b/arch/arm/src/bcm2708/bcm_miniuart.c index a88a22a7a8f..dc17851f61f 100644 --- a/arch/arm/src/bcm2708/bcm_miniuart.c +++ b/arch/arm/src/bcm2708/bcm_miniuart.c @@ -797,7 +797,7 @@ int bcm_mu_interrupt(int irq, void *context, void *arg) } /**************************************************************************** - * Name: bcm_lpuart_earlyserialinit + * Name: bcm_miniuart_earlyserialinit * * Description: * Performs the low level Mini-UART initialization early in debug so that the @@ -808,7 +808,7 @@ int bcm_mu_interrupt(int irq, void *context, void *arg) * ****************************************************************************/ -void bcm_lpuart_earlyserialinit(void) +void bcm_miniuart_earlyserialinit(void) { /* Disable interrupts from all Mini-UARTS. The console is enabled in * bcm_setup() @@ -873,10 +873,10 @@ int up_putc(int ch) { /* Add CR */ - up_lowputc('\r'); + bcm_lowputc('\r'); } - up_lowputc(ch); + bcm_lowputc(ch); bcm_restoreuartint(priv, ier); #endif return ch; @@ -901,10 +901,10 @@ int up_putc(int ch) { /* Add CR */ - up_lowputc('\r'); + bcm_lowputc('\r'); } - up_lowputc(ch); + bcm_lowputc(ch); #endif return ch;