Commit 7382fbde authored by Palmer Dabbelt's avatar Palmer Dabbelt

RISC-V: __io_writes should respect the length argument

parents 07f8ba74 da894ff1
...@@ -250,7 +250,7 @@ static inline u64 __raw_readq(const volatile void __iomem *addr) ...@@ -250,7 +250,7 @@ static inline u64 __raw_readq(const volatile void __iomem *addr)
const ctype *buf = buffer; \ const ctype *buf = buffer; \
\ \
do { \ do { \
__raw_writeq(*buf++, addr); \ __raw_write ## len(*buf++, addr); \
} while (--count); \ } while (--count); \
} \ } \
afence; \ afence; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment