diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2024-11-06 06:10:50 +0000 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2024-11-11 21:51:42 +0100 |
commit | a36498d22c2b9ae8fda4e1c9e01c04897b1fd6d0 (patch) | |
tree | 44189cabec00372cce67f65a00cd69394bc89f01 /arch/powerpc | |
parent | fb56007c9bc38550755a53f7afd71a287340b724 (diff) |
asm/vga.h: don't bother with scr_mem{cpy,move}v() unless we need to
... if they are identical to fallbacks, just leave them alone.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/include/asm/vga.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/powerpc/include/asm/vga.h b/arch/powerpc/include/asm/vga.h index fcf721682a71..f2dc40e1c52a 100644 --- a/arch/powerpc/include/asm/vga.h +++ b/arch/powerpc/include/asm/vga.h @@ -40,11 +40,6 @@ static inline void scr_memsetw(u16 *s, u16 v, unsigned int n) memset16(s, cpu_to_le16(v), n / 2); } -#define VT_BUF_HAVE_MEMCPYW -#define VT_BUF_HAVE_MEMMOVEW -#define scr_memcpyw memcpy -#define scr_memmovew memmove - #endif /* !CONFIG_VGA_CONSOLE && !CONFIG_MDA_CONSOLE */ #ifdef __powerpc64__ |