diff --git a/arch/riscv/include/asm/bitops.h b/arch/riscv/include/asm/bitops.h index 536629bbecb..ef52c91b436 100644 --- a/arch/riscv/include/asm/bitops.h +++ b/arch/riscv/include/asm/bitops.h @@ -78,6 +78,7 @@ static inline int __test_and_set_bit(int nr, void *addr) return retval; } +#define test_and_clear_bit __test_and_clear_bit static inline int __test_and_clear_bit(int nr, void *addr) { int mask, retval; diff --git a/arch/riscv/include/asm/io.h b/arch/riscv/include/asm/io.h index fcb19a2a8e0..10dafcdf5d0 100644 --- a/arch/riscv/include/asm/io.h +++ b/arch/riscv/include/asm/io.h @@ -247,6 +247,7 @@ static inline u64 readq(const volatile void __iomem *addr) #define insb(p, d, l) readsb(__io(p), d, l) #define insw(p, d, l) readsw(__io(p), d, l) #define insl(p, d, l) readsl(__io(p), d, l) +#endif static inline void readsb(unsigned int *addr, void *data, int bytelen) { @@ -337,7 +338,6 @@ static inline void writesl(unsigned int *addr, const void *data, int longlen) longlen--; } } -#endif #define outb_p(val, port) outb((val), (port)) #define outw_p(val, port) outw((val), (port)) diff --git a/arch/riscv/include/asm/processor.h b/arch/riscv/include/asm/processor.h index fe3575298e9..55e3506c856 100644 --- a/arch/riscv/include/asm/processor.h +++ b/arch/riscv/include/asm/processor.h @@ -23,4 +23,6 @@ * no one uses the macros defined in this head file. **************************************************************/ +#define cpu_relax() barrier() + #endif /* __ASM_RISCV_PROCESSOR_H */ diff --git a/drivers/usb/musb-new/musb_io.h b/drivers/usb/musb-new/musb_io.h index 72a53656321..4b358bf3642 100644 --- a/drivers/usb/musb-new/musb_io.h +++ b/drivers/usb/musb-new/musb_io.h @@ -23,7 +23,7 @@ #if !defined(CONFIG_ARM) && !defined(CONFIG_SUPERH) \ && !defined(CONFIG_PPC32) \ && !defined(CONFIG_PPC64) && !defined(CONFIG_MIPS) \ - && !defined(CONFIG_M68K) + && !defined(CONFIG_M68K) && !defined(CONFIG_RISCV) static inline void readsl(const void __iomem *addr, void *buf, int len) { insl((unsigned long)addr, buf, len); } static inline void readsw(const void __iomem *addr, void *buf, int len) diff --git a/drivers/usb/musb-new/sunxi.c b/drivers/usb/musb-new/sunxi.c index 619b624b178..79d602d3c7f 100644 --- a/drivers/usb/musb-new/sunxi.c +++ b/drivers/usb/musb-new/sunxi.c @@ -23,8 +23,8 @@ #include #include #include -#include -#include +//#include +//#include #include #include #include @@ -174,6 +174,7 @@ static void USBC_ForceVbusValidToHigh(__iomem void *base) static void USBC_ConfigFIFO_Base(void) { +#if 0 u32 reg_value; /* config usb fifo, 8kb mode */ @@ -181,6 +182,7 @@ static void USBC_ConfigFIFO_Base(void) reg_value &= ~(0x03 << 0); reg_value |= BIT(0); writel(reg_value, SUNXI_SRAMC_BASE + 0x04); +#endif } /******************************************************************************