diff options
author | Palmer Dabbelt <palmer@sifive.com> | 2017-12-01 16:14:36 -0500 |
---|---|---|
committer | Palmer Dabbelt <palmer@sifive.com> | 2017-12-01 16:14:36 -0500 |
commit | 7382fbdeae0d6dbd1c26ebf4a302f1ccf33d9882 (patch) | |
tree | 87269ae3b815aa0cb574ee1533754905373e60a6 | |
parent | 07f8ba7439f9c942d5bd7b63074e7a1528601713 (diff) | |
parent | da894ff100be9044c490f47f61541481b4f42b1f (diff) |
RISC-V: __io_writes should respect the length argument
-rw-r--r-- | arch/riscv/include/asm/io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/include/asm/io.h b/arch/riscv/include/asm/io.h index c1f32cfcc79b..507ee6a16e67 100644 --- a/arch/riscv/include/asm/io.h +++ b/arch/riscv/include/asm/io.h | |||
@@ -250,7 +250,7 @@ static inline u64 __raw_readq(const volatile void __iomem *addr) | |||
250 | const ctype *buf = buffer; \ | 250 | const ctype *buf = buffer; \ |
251 | \ | 251 | \ |
252 | do { \ | 252 | do { \ |
253 | __raw_writeq(*buf++, addr); \ | 253 | __raw_write ## len(*buf++, addr); \ |
254 | } while (--count); \ | 254 | } while (--count); \ |
255 | } \ | 255 | } \ |
256 | afence; \ | 256 | afence; \ |