aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/mac802154.h
diff options
context:
space:
mode:
authorVarka Bhadram <varkabhadram@gmail.com>2015-04-09 13:55:11 +0530
committerMarcel Holtmann <marcel@holtmann.org>2015-04-09 19:56:15 +0200
commit23310f6f3a8f30f4b6794e941763da4708f7471a (patch)
treeebc9a1455acf35ff08f1cd121c6b966a9d9e185f /include/net/mac802154.h
parentBluetooth: btusb: Use proper data structures for Intel vendor events (diff)
downloadlinux-dev-23310f6f3a8f30f4b6794e941763da4708f7471a.tar.xz
linux-dev-23310f6f3a8f30f4b6794e941763da4708f7471a.zip
mac802154: fix transmission power datatype
Netlink attribute for the power is s8. But for the driver level operations we are collection power level value into integer. It has to be change to s8 from int. Signed-off-by: Varka Bhadram <varkab@cdac.in> Acked-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/mac802154.h')
-rw-r--r--include/net/mac802154.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/mac802154.h b/include/net/mac802154.h
index 2f0644c0612a..e18e7fd43f47 100644
--- a/include/net/mac802154.h
+++ b/include/net/mac802154.h
@@ -213,7 +213,7 @@ struct ieee802154_ops {
int (*set_hw_addr_filt)(struct ieee802154_hw *hw,
struct ieee802154_hw_addr_filt *filt,
unsigned long changed);
- int (*set_txpower)(struct ieee802154_hw *hw, int db);
+ int (*set_txpower)(struct ieee802154_hw *hw, s8 dbm);
int (*set_lbt)(struct ieee802154_hw *hw, bool on);
int (*set_cca_mode)(struct ieee802154_hw *hw,
const struct wpan_phy_cca *cca);