msm: ipa3: Silence PM notifier log spam

We don't need to know that PM notifiers are working. Silence the entry/exit
log spam in ipa_pm_notify().

Change-Id: I9bae89fa5e27b8835683ec1423ecc751491ea13c
Signed-off-by: Sultan Alsawaf <sultan@osomprivacy.com>
This commit is contained in:
Sultan Alsawaf 2023-04-11 11:22:49 -07:00 committed by Giovanni Ricca
parent c304f45299
commit 2bd94eadc3
No known key found for this signature in database

View File

@ -468,7 +468,7 @@ EXPORT_SYMBOL(ipa_smmu_free_sgt);
static int ipa_pm_notify(struct notifier_block *b, unsigned long event, void *p)
{
IPAERR("Entry\n");
IPADBG("Entry\n");
switch (event) {
case PM_POST_SUSPEND:
#ifdef CONFIG_DEEPSLEEP
@ -480,7 +480,7 @@ static int ipa_pm_notify(struct notifier_block *b, unsigned long event, void *p)
#endif
break;
}
IPAERR("Exit\n");
IPADBG("Exit\n");
return NOTIFY_DONE;
}