diff options
author | Alexander Aring <alex.aring@gmail.com> | 2015-05-17 21:44:39 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-05-19 11:44:41 +0200 |
commit | 1a19cb680be0d4b06ce9a9d6516b8f45f544d3e8 (patch) | |
tree | b61fa7ac0d60156c831c674ed0b0c3adf67e1be0 /drivers/net/ieee802154 | |
parent | 673692faf3fb42ec73ef7210238b5869d6e2873d (diff) | |
download | blackbird-op-linux-1a19cb680be0d4b06ce9a9d6516b8f45f544d3e8.tar.gz blackbird-op-linux-1a19cb680be0d4b06ce9a9d6516b8f45f544d3e8.zip |
ieee802154: change transmit power to s32
This patch change the transmit power from s8 to s32. This prepares to store a
mbm value instead dbm inside the transmit power variable. The old
interface keep the a s8 dbm value, which should be backward compatibility
when assign s8 to s32.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/net/ieee802154')
-rw-r--r-- | drivers/net/ieee802154/at86rf230.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ieee802154/at86rf230.c b/drivers/net/ieee802154/at86rf230.c index 67d00fbc2e0e..02b6bb72304d 100644 --- a/drivers/net/ieee802154/at86rf230.c +++ b/drivers/net/ieee802154/at86rf230.c @@ -1194,7 +1194,7 @@ at86rf230_set_hw_addr_filt(struct ieee802154_hw *hw, } static int -at86rf230_set_txpower(struct ieee802154_hw *hw, s8 db) +at86rf230_set_txpower(struct ieee802154_hw *hw, s32 db) { struct at86rf230_local *lp = hw->priv; |