mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-12 04:49:54 +00:00
Just remove the first entry as there is a second later on. Signed-off-by: Benjamin Berg <benjamin.berg@intel.com> Link: https://patch.msgid.link/20241103150506.1367695-4-benjamin@sipsolutions.net Signed-off-by: Johannes Berg <johannes.berg@intel.com>
17 lines
435 B
C
17 lines
435 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* for use by sys-$SUBARCH/kernel-offsets.c */
|
|
|
|
DEFINE(KERNEL_MADV_REMOVE, MADV_REMOVE);
|
|
|
|
DEFINE(UM_KERN_PAGE_SIZE, PAGE_SIZE);
|
|
DEFINE(UM_KERN_PAGE_MASK, PAGE_MASK);
|
|
DEFINE(UM_KERN_PAGE_SHIFT, PAGE_SHIFT);
|
|
|
|
DEFINE(UM_GFP_KERNEL, GFP_KERNEL);
|
|
DEFINE(UM_GFP_ATOMIC, GFP_ATOMIC);
|
|
|
|
DEFINE(UM_THREAD_SIZE, THREAD_SIZE);
|
|
|
|
DEFINE(UM_NSEC_PER_SEC, NSEC_PER_SEC);
|
|
DEFINE(UM_NSEC_PER_USEC, NSEC_PER_USEC);
|