Browse Source

msm: ipa3: Fix to use the msecs_to_jiffies

Based on HZ configured in target defconfig wait time was changing.
To avoid these scenario using msecs_to_jiffies function it will
give fixed time value based on HZ configured on the system.

Change-Id: Ia3fe08c238afb618b158b67d1b226ad62197391f
Signed-off-by: Ashok Vuyyuru <[email protected]>
Ashok Vuyyuru 5 years ago
parent
commit
607c3f123c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/platform/msm/ipa/ipa_v3/rmnet_ipa.c

+ 1 - 1
drivers/platform/msm/ipa/ipa_v3/rmnet_ipa.c

@@ -2120,7 +2120,7 @@ static void ipa3_wwan_setup(struct net_device *dev)
 	dev->flags &= ~(IFF_BROADCAST | IFF_MULTICAST);
 	dev->needed_headroom = HEADROOM_FOR_QMAP;
 	dev->needed_tailroom = TAILROOM;
-	dev->watchdog_timeo = 1000;
+	dev->watchdog_timeo = msecs_to_jiffies(10000);
 }
 
 /**