ieee802154: change cca ed level to mbm
This patch change the handling of cca energy detection level from dbm to mbm. This prepares to handle floating point cca energy detection levels values. The old netlink 802.15.4 will convert the dbm value to mbm for handling backward compatibility. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:

committed by
Marcel Holtmann

parent
e2eb173aaa
commit
32b23550ad
@@ -96,7 +96,7 @@ static inline int drv_set_lbt_mode(struct ieee802154_local *local, bool mode)
|
||||
}
|
||||
|
||||
static inline int
|
||||
drv_set_cca_ed_level(struct ieee802154_local *local, s32 ed_level)
|
||||
drv_set_cca_ed_level(struct ieee802154_local *local, s32 mbm)
|
||||
{
|
||||
might_sleep();
|
||||
|
||||
@@ -105,7 +105,7 @@ drv_set_cca_ed_level(struct ieee802154_local *local, s32 ed_level)
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
return local->ops->set_cca_ed_level(&local->hw, ed_level);
|
||||
return local->ops->set_cca_ed_level(&local->hw, mbm);
|
||||
}
|
||||
|
||||
static inline int drv_set_pan_id(struct ieee802154_local *local, __le16 pan_id)
|
||||
|
Reference in New Issue
Block a user