1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * include/linux/lowmem_dbg.h 4 * 5 * Copyright (c) 2020-2022 Huawei Technologies Co., Ltd. 6 */ 7 #ifndef __LMK_DBG_H 8 #define __LMK_DBG_H 9 10 #ifdef CONFIG_LOWMEM 11 void lowmem_dbg(short oom_score_adj); 12 #else lowmem_dbg(short oom_score_adj)13static inline void lowmem_dbg(short oom_score_adj) {} 14 #endif 15 #endif 16 17