Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9e8b1fb authored by Paul Mundt's avatar Paul Mundt
Browse files

sh: Fix up the sh64 earlyprintk build.



sci_rxd_in() on SH-5 wants to be using SCSPTR, not SCSPTR2.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent cd89436e
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -636,7 +636,7 @@ static inline int sci_rxd_in(struct uart_port *port)
#elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
#elif defined(CONFIG_CPU_SUBTYPE_SH5_101) || defined(CONFIG_CPU_SUBTYPE_SH5_103)
static inline int sci_rxd_in(struct uart_port *port)
static inline int sci_rxd_in(struct uart_port *port)
{
{
         return sci_in(port, SCSPTR2)&0x0001 ? 1 : 0; /* SCIF */
         return sci_in(port, SCSPTR)&0x0001 ? 1 : 0; /* SCIF */
}
}
#elif defined(__H8300H__) || defined(__H8300S__)
#elif defined(__H8300H__) || defined(__H8300S__)
static inline int sci_rxd_in(struct uart_port *port)
static inline int sci_rxd_in(struct uart_port *port)