fbdev: Rename fb_mem*() helpers

Update the names of the fb_mem*() helpers to be consistent with their
regular counterparts. Hence, fb_memset() now becomes fb_memset_io(),
fb_memcpy_fromfb() now becomes fb_memcpy_fromio() and fb_memcpy_tofb()
becomes fb_memcpy_toio(). No functional changes.

v6:
	* update new file fb_io_fops.c

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Reviewed-by: Sui Jingfeng <suijingfeng@loongson.cn>
Link: https://patchwork.freedesktop.org/patch/msgid/20230512102444.5438-8-tzimmermann@suse.de
This commit is contained in:
Thomas Zimmermann 2023-05-12 12:24:44 +02:00
parent 8f8eaa1b02
commit 20d54e48d9
12 changed files with 36 additions and 36 deletions

View file

@ -20,23 +20,23 @@ static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
}
#define fb_pgprotect fb_pgprotect
static inline void fb_memcpy_fromfb(void *to, const volatile void __iomem *from, size_t n)
static inline void fb_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n)
{
memcpy(to, (void __force *)from, n);
}
#define fb_memcpy_fromfb fb_memcpy_fromfb
#define fb_memcpy_fromio fb_memcpy_fromio
static inline void fb_memcpy_tofb(volatile void __iomem *to, const void *from, size_t n)
static inline void fb_memcpy_toio(volatile void __iomem *to, const void *from, size_t n)
{
memcpy((void __force *)to, from, n);
}
#define fb_memcpy_tofb fb_memcpy_tofb
#define fb_memcpy_toio fb_memcpy_toio
static inline void fb_memset(volatile void __iomem *addr, int c, size_t n)
static inline void fb_memset_io(volatile void __iomem *addr, int c, size_t n)
{
memset((void __force *)addr, c, n);
}
#define fb_memset fb_memset
#define fb_memset fb_memset_io
#include <asm-generic/fb.h>