mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07: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
|