mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 14:48:06 +00:00
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>
This commit is contained in:
parent
908edc5461
commit
3251ca334b
1 changed files with 2 additions and 2 deletions
|
@ -549,14 +549,14 @@ cc2520_ed(struct ieee802154_hw *hw, u8 *level)
|
||||||
u8 rssi;
|
u8 rssi;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = cc2520_read_register(priv , CC2520_RSSISTAT, &status);
|
ret = cc2520_read_register(priv, CC2520_RSSISTAT, &status);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
if (status != RSSI_VALID)
|
if (status != RSSI_VALID)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
ret = cc2520_read_register(priv , CC2520_RSSI, &rssi);
|
ret = cc2520_read_register(priv, CC2520_RSSI, &rssi);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue