mirror of
https://github.com/torvalds/linux.git
synced 2026-09-25 21:21:09 -04:00
ptp: ptp_ines: Remove redundant null check
Because kfree_skb already checked NULL skb parameter, so the additional check is unnecessary, just remove it. Signed-off-by: Xu Wang <[email protected]> Signed-off-by: David S. Miller <[email protected]>
This commit is contained in:
@@ -644,8 +644,7 @@ static void ines_txtstamp(struct mii_timestamper *mii_ts,
|
||||
|
||||
spin_unlock_irqrestore(&port->lock, flags);
|
||||
|
||||
if (old_skb)
|
||||
kfree_skb(old_skb);
|
||||
kfree_skb(old_skb);
|
||||
|
||||
schedule_delayed_work(&port->ts_work, 1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user