diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-04-24 13:09:14 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-04-26 12:20:34 -0400 |
commit | ee69559bb838ac44baf675a529b02868c4392188 (patch) | |
tree | 7a6e8e5fe488f97d5b1b038b3937a7ecaef538c3 /drivers/net/ieee802154 | |
parent | a8b66db804f045a33c7e52ab32d8338a917a3153 (diff) |
at86rf230: remove unnecessary assign
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ieee802154')
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index b324bb346871..960444b449d9 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c | |||
@@ -693,10 +693,7 @@ at86rf230_xmit(struct ieee802154_dev *dev, struct sk_buff *skb) | |||
693 | if (rc < 0) | 693 | if (rc < 0) |
694 | goto err_rx; | 694 | goto err_rx; |
695 | 695 | ||
696 | rc = at86rf230_start(dev); | 696 | return at86rf230_start(dev); |
697 | |||
698 | return rc; | ||
699 | |||
700 | err_rx: | 697 | err_rx: |
701 | at86rf230_start(dev); | 698 | at86rf230_start(dev); |
702 | err: | 699 | err: |