20d54e48d9
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
32 lines
757 B
C
32 lines
757 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2020-2022 Loongson Technology Corporation Limited
|
|
*/
|
|
#ifndef _ASM_FB_H_
|
|
#define _ASM_FB_H_
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/string.h>
|
|
|
|
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_fromio fb_memcpy_fromio
|
|
|
|
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_toio fb_memcpy_toio
|
|
|
|
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_io
|
|
|
|
#include <asm-generic/fb.h>
|
|
|
|
#endif /* _ASM_FB_H_ */
|