From 4ebf446ebb51b291050824e2fb9c2270761a9455 Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Fri, 27 Nov 2020 19:41:46 +0800 Subject: [PATCH] arm/sama5: Fix error: chip/sam_ehci.c:340:38: error: statement with no effect Signed-off-by: Xiang Xiao --- arch/arm/src/sama5/sam_ehci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/src/sama5/sam_ehci.c b/arch/arm/src/sama5/sam_ehci.c index f372908975b..4910ef41b28 100644 --- a/arch/arm/src/sama5/sam_ehci.c +++ b/arch/arm/src/sama5/sam_ehci.c @@ -336,8 +336,8 @@ static int sam_qh_dump(struct sam_qh_s *qh, uint32_t **bp, void *arg); #else # define sam_qtd_print(qtd) # define sam_qh_print(qh) -# define sam_qtd_dump(qtd, bp, arg) OK -# define sam_qh_dump(qh, bp, arg) OK +# define sam_qtd_dump(qtd, bp, arg) +# define sam_qh_dump(qh, bp, arg) #endif static inline uint8_t sam_ehci_speed(uint8_t usbspeed);