Re: [PATCH 6/9] ser_gigaset: checkpatch cleanup
From: Alan Cox <hidden>
Date: 2009-10-25 20:35:33
Also in:
lkml
From: Alan Cox <hidden>
Date: 2009-10-25 20:35:33
Also in:
lkml
On Sun, 25 Oct 2009 20:30:27 +0100 (CET) Tilman Schmidt [off-list ref] wrote:
Duly uglified as demanded by checkpatch.pl. Impact: cosmeti
Umm ??
- if (!(bcs->tx_skb = skb_dequeue(&bcs->squeue))) + nextskb = skb_dequeue(&bcs->squeue); + if (!nextskb) /* no skb either, nothing to do */ return; + bcs->tx_skb = nextskb;
This does not do the same thing as before Previously the NULL case assigned to bcs->tx_skb, now it does not.