aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authoralex.bluesman.smirnov@gmail.com <alex.bluesman.smirnov@gmail.com>2012-06-25 03:30:13 +0000
committerDavid S. Miller <davem@davemloft.net>2012-06-25 16:35:30 -0700
commit8a8e28b8e2c27362f24cf06513c05d5e3a304e03 (patch)
tree5ce65385245efb27e0e9e90480dfd3c90871f17f /net
parentnet: l2tp_eth: fix l2tp_eth_dev_xmit race (diff)
downloadlinux-dev-8a8e28b8e2c27362f24cf06513c05d5e3a304e03.tar.xz
linux-dev-8a8e28b8e2c27362f24cf06513c05d5e3a304e03.zip
mac802154: add missed braces
Add missed braces after 'if' operator. Signed-off-by: Alexander Smirnov <alex.bluesman.smirnov@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/mac802154/tx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/mac802154/tx.c b/net/mac802154/tx.c
index 8781d8f904d9..434b6873b352 100644
--- a/net/mac802154/tx.c
+++ b/net/mac802154/tx.c
@@ -83,9 +83,10 @@ netdev_tx_t mac802154_tx(struct mac802154_priv *priv, struct sk_buff *skb,
{
struct xmit_work *work;
- if (!(priv->phy->channels_supported[page] & (1 << chan)))
+ if (!(priv->phy->channels_supported[page] & (1 << chan))) {
WARN_ON(1);
return NETDEV_TX_OK;
+ }
if (!(priv->hw.flags & IEEE802154_HW_OMIT_CKSUM)) {
u16 crc = crc_ccitt(0, skb->data, skb->len);