Re: [PATCH v7 07/10] parisc: Align prototypes of IO memcpy/memset
Richard Henderson <[email protected]>
| Newsgroups | gmane.linux.ports.parisc,gmane.linux.ports.arm.kernel,gmane.linux.kernel,gmane.linux.ports.alpha,gmane.linux.ports.sh.devel,gmane.linux.uml.devel,gmane.linux.kernel.cross-arch |
|---|---|
| Message-ID | <[email protected]> |
On 9/30/24 06:23, Julian Vetter wrote:
> -void memset_io(volatile void __iomem *addr, unsigned char val, int count)
> +void memset_io(volatile void __iomem *addr, int val, size_t count)
> {
> u32 val32 = (val << 24) | (val << 16) | (val << 8) | val;
Mask of val now required.
r~