summaryrefslogtreecommitdiffstats
path: root/arch/riscv/include
diff options
context:
space:
mode:
authorPalmer Dabbelt2017-12-01 22:14:36 +0100
committerPalmer Dabbelt2017-12-01 22:14:36 +0100
commit7382fbdeae0d6dbd1c26ebf4a302f1ccf33d9882 (patch)
tree87269ae3b815aa0cb574ee1533754905373e60a6 /arch/riscv/include
parentRISC-V: User-Visible Changes (diff)
parentRISC-V: __io_writes should respect the length argument (diff)
downloadkernel-qcow2-linux-7382fbdeae0d6dbd1c26ebf4a302f1ccf33d9882.tar.gz
kernel-qcow2-linux-7382fbdeae0d6dbd1c26ebf4a302f1ccf33d9882.tar.xz
kernel-qcow2-linux-7382fbdeae0d6dbd1c26ebf4a302f1ccf33d9882.zip
RISC-V: __io_writes should respect the length argument
Diffstat (limited to 'arch/riscv/include')
-rw-r--r--arch/riscv/include/asm/io.h2
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)
const ctype *buf = buffer; \
\
do { \
- __raw_writeq(*buf++, addr); \
+ __raw_write ## len(*buf++, addr); \
} while (--count); \
} \
afence; \