Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a093b5f authored by Hari Prasath Gujulan yyElango's avatar Hari Prasath Gujulan yyElango Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: use time_after_eq



use the time_after_eq macro for the comparison operation

Signed-off-by: default avatarHari Prasath Gujulan yyElango <hgujulan@visteon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4d77c6cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2296,7 +2296,7 @@ void WILC_WFI_p2p_rx (struct net_device *dev, uint8_t *buff, uint32_t size)
		if (ieee80211_is_action(buff[FRAME_TYPE_ID])) {
			PRINT_D(GENERIC_DBG, "Rx Action Frame Type: %x %x\n", buff[ACTION_SUBTYPE_ID], buff[P2P_PUB_ACTION_SUBTYPE]);

			if (priv->bCfgScanning == WILC_TRUE && jiffies >= pstrWFIDrv->u64P2p_MgmtTimeout) {
			if (priv->bCfgScanning == WILC_TRUE && time_after_eq(jiffies, pstrWFIDrv->u64P2p_MgmtTimeout)) {
				PRINT_D(GENERIC_DBG, "Receiving action frames from wrong channels\n");
				return;
			}