M7350/kernel/arch/x86/um/asm/checksum.h
2024-09-09 08:52:07 +00:00

11 lines
143 B
C

#ifndef __UM_CHECKSUM_H
#define __UM_CHECKSUM_H
#ifdef CONFIG_X86_32
# include "checksum_32.h"
#else
# include "checksum_64.h"
#endif
#endif