mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-05 13:24:23 +08:00
c281a6c1ac
consolidate HAVE_CSUM_COPY_USER for 32bit and 64bit, while are at it Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
9 lines
207 B
C
9 lines
207 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#define _HAVE_ARCH_COPY_AND_CSUM_FROM_USER 1
|
|
#define HAVE_CSUM_COPY_USER
|
|
#ifdef CONFIG_X86_32
|
|
# include <asm/checksum_32.h>
|
|
#else
|
|
# include <asm/checksum_64.h>
|
|
#endif
|