summaryrefslogtreecommitdiff
path: root/drivers/net/ipa/ipa_smp2p.c
diff options
context:
space:
mode:
authorAlex Elder <elder@linaro.org>2021-08-10 22:27:04 +0300
committerDavid S. Miller <davem@davemloft.net>2021-08-11 15:31:56 +0300
commit0d08026ac6099ef8bd73412005830ce7280b7c80 (patch)
treeacd78b3afced1a108e3d34ca5342fd695a2b38b1 /drivers/net/ipa/ipa_smp2p.c
parenta71aeff3dd0a7d127967d42a86b42b0aa21a90dc (diff)
downloadlinux-0d08026ac6099ef8bd73412005830ce7280b7c80.tar.xz
net: ipa: kill ipa_clock_get_additional()
Now that ipa_clock_get_additional() is a trivial wrapper around pm_runtime_get_if_active(), just open-code it in its only caller and delete the function. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa/ipa_smp2p.c')
-rw-r--r--drivers/net/ipa/ipa_smp2p.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/net/ipa/ipa_smp2p.c b/drivers/net/ipa/ipa_smp2p.c
index f84d6523636e..04b977cf9159 100644
--- a/drivers/net/ipa/ipa_smp2p.c
+++ b/drivers/net/ipa/ipa_smp2p.c
@@ -9,6 +9,7 @@
#include <linux/interrupt.h>
#include <linux/notifier.h>
#include <linux/panic_notifier.h>
+#include <linux/pm_runtime.h>
#include <linux/soc/qcom/smem.h>
#include <linux/soc/qcom/smem_state.h>
@@ -84,13 +85,15 @@ struct ipa_smp2p {
*/
static void ipa_smp2p_notify(struct ipa_smp2p *smp2p)
{
+ struct device *dev;
u32 value;
u32 mask;
if (smp2p->notified)
return;
- smp2p->clock_on = ipa_clock_get_additional(smp2p->ipa);
+ dev = &smp2p->ipa->pdev->dev;
+ smp2p->clock_on = pm_runtime_get_if_active(dev, true) > 0;
/* Signal whether the clock is enabled */
mask = BIT(smp2p->enabled_bit);