From 6dec3601691905f47563aec6fc30ee279dcba00d Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 13 Nov 2020 14:52:08 +0900 Subject: [PATCH] arch/arm/src/samv7/sam_serial.c: Fix a type mismatch --- arch/arm/src/samv7/sam_serial.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/src/samv7/sam_serial.c b/arch/arm/src/samv7/sam_serial.c index a9e3cf62d7d..f3a7b46904f 100644 --- a/arch/arm/src/samv7/sam_serial.c +++ b/arch/arm/src/samv7/sam_serial.c @@ -355,7 +355,7 @@ static int sam_attach(struct uart_dev_s *dev); static void sam_detach(struct uart_dev_s *dev); static int sam_interrupt(int irq, void *context, FAR void *arg); static int sam_ioctl(struct file *filep, int cmd, unsigned long arg); -static int sam_receive(struct uart_dev_s *dev, uint32_t *status); +static int sam_receive(struct uart_dev_s *dev, unsigned int *status); static void sam_rxint(struct uart_dev_s *dev, bool enable); static bool sam_rxavailable(struct uart_dev_s *dev); static void sam_send(struct uart_dev_s *dev, int ch); @@ -1255,7 +1255,7 @@ static int sam_ioctl(struct file *filep, int cmd, unsigned long arg) * ****************************************************************************/ -static int sam_receive(struct uart_dev_s *dev, uint32_t *status) +static int sam_receive(struct uart_dev_s *dev, unsigned int *status) { struct sam_dev_s *priv = (struct sam_dev_s *)dev->priv;