soc: qcom: smp2p_sleepstate: Decrease wakeup event length

Change-Id: I5c3f55085ba0849338bce6209dca3817786aaf22
This commit is contained in:
Arian 2023-01-06 02:19:48 +01:00 committed by Jens Reidel
parent 164b870d5b
commit abb59cf768
No known key found for this signature in database
GPG Key ID: 23C1E5F512C12303

View File

@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright (c) 2014-2019, The Linux Foundation. All rights reserved.
* Copyright (C) 2021 XiaoMi, Inc.
*/
#include <linux/module.h>
#include <linux/suspend.h>
@ -49,7 +50,7 @@ static struct notifier_block sleepstate_pm_nb = {
static irqreturn_t smp2p_sleepstate_handler(int irq, void *ctxt)
{
__pm_wakeup_event(notify_ws, 200);
__pm_wakeup_event(notify_ws, 100);
return IRQ_HANDLED;
}