simple_lmk: Lower vmpressure trigger threshold

Change-Id: Ifa5949aa44c5f6ceb8001c3105f1b3cf92fbefd5
Signed-off-by: Juhyung Park <qkrwngud825@gmail.com>
Signed-off-by: Richard Raya <rdxzv.dev@gmail.com>
This commit is contained in:
Juhyung Park 2022-03-10 03:40:11 +09:00 committed by Richard Raya
parent 0096c8c85e
commit 44682225b6

View File

@ -472,7 +472,7 @@ void simple_lmk_trigger(void)
static int simple_lmk_vmpressure_cb(struct notifier_block *nb,
unsigned long pressure, void *data)
{
if (pressure == 100)
if (pressure >= 80)
simple_lmk_trigger();
return NOTIFY_OK;