diff options
author | Mohammad Jamal <md.jamalmohiuddin@gmail.com> | 2015-01-23 08:55:27 -0500 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-02-02 00:09:35 -0500 |
commit | 3251ca334bcc379b4685bf6850bf38db365cbe6f (patch) | |
tree | 9b7015360e48ee5df0febcbe404b4e45b79f1a73 /drivers/net/ieee802154/cc2520.c | |
parent | 908edc5461565597bfc083c68088b780888e55b0 (diff) |
ieee802154: cc2520: Fix space before , coding style issue
This patch removes the warnings (space before , ) shown by
checkpatch.pl
Signed-off-by: Mohammad Jamal <md.jamalmohiuddin@gmail.com>
Acked-by: Varka Bhadram <varkabhadram@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/net/ieee802154/cc2520.c')
-rw-r--r-- | drivers/net/ieee802154/cc2520.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ieee802154/cc2520.c b/drivers/net/ieee802154/cc2520.c index b38656732ff7..181b349b060e 100644 --- a/drivers/net/ieee802154/cc2520.c +++ b/drivers/net/ieee802154/cc2520.c | |||
@@ -549,14 +549,14 @@ cc2520_ed(struct ieee802154_hw *hw, u8 *level) | |||
549 | u8 rssi; | 549 | u8 rssi; |
550 | int ret; | 550 | int ret; |
551 | 551 | ||
552 | ret = cc2520_read_register(priv , CC2520_RSSISTAT, &status); | 552 | ret = cc2520_read_register(priv, CC2520_RSSISTAT, &status); |
553 | if (ret) | 553 | if (ret) |
554 | return ret; | 554 | return ret; |
555 | 555 | ||
556 | if (status != RSSI_VALID) | 556 | if (status != RSSI_VALID) |
557 | return -EINVAL; | 557 | return -EINVAL; |
558 | 558 | ||
559 | ret = cc2520_read_register(priv , CC2520_RSSI, &rssi); | 559 | ret = cc2520_read_register(priv, CC2520_RSSI, &rssi); |
560 | if (ret) | 560 | if (ret) |
561 | return ret; | 561 | return ret; |
562 | 562 | ||