[PATCH v7 06/10] alpha: Align prototypes of IO memcpy/memset
Richard Henderson
richard.henderson at linaro.org
Thu Oct 3 07:46:20 PDT 2024
On 9/30/24 06:23, Julian Vetter wrote:
> Align the prototypes of the memcpy_{from,to}io and memset_io functions
> with the new ones from iomap_copy.c and remove function declarations,
> because they are now declared in asm-generic/io.h.
>
> Reviewed-by: Yann Sionneau <ysionneau at kalrayinc.com>
> Signed-off-by: Julian Vetter <jvetter at kalrayinc.com>
> ---
> Changes for v7:
> - New patch
> ---
> arch/alpha/include/asm/io.h | 6 ++----
> arch/alpha/kernel/io.c | 4 ++--
> 2 files changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/arch/alpha/include/asm/io.h b/arch/alpha/include/asm/io.h
> index b191d87f89c4..db3a9f41447e 100644
> --- a/arch/alpha/include/asm/io.h
> +++ b/arch/alpha/include/asm/io.h
> @@ -591,13 +591,11 @@ extern inline u64 readq_relaxed(const volatile void __iomem *addr)
> /*
> * String version of IO memory access ops:
> */
> -extern void memcpy_fromio(void *, const volatile void __iomem *, long);
> -extern void memcpy_toio(volatile void __iomem *, const void *, long);
> extern void _memset_c_io(volatile void __iomem *, unsigned long, long);
>
> -static inline void memset_io(volatile void __iomem *addr, u8 c, long len)
> +static inline void memset_io(volatile void __iomem *dst, int c, size_t count)
> {
> - _memset_c_io(addr, 0x0101010101010101UL * c, len);
> + _memset_c_io(dst, 0x0101010101010101UL * c, count);
By changing c from 'u8' to 'int', you need to mask before the multiplication.
r~
More information about the linux-um
mailing list