msm-4.14/include/linux/simple_lmk.h

23 lines
447 B
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2019-2020 Sultan Alsawaf <sultan@kerneltoast.com>.
*/
#ifndef _SIMPLE_LMK_H_
#define _SIMPLE_LMK_H_
struct mm_struct;
#ifdef CONFIG_ANDROID_SIMPLE_LMK
void simple_lmk_mm_freed(struct mm_struct *mm);
void simple_lmk_trigger(void);
#else
static inline void simple_lmk_mm_freed(struct mm_struct *mm)
{
}
static inline void simple_lmk_trigger(void)
{
}
#endif
#endif /* _SIMPLE_LMK_H_ */