Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 628b1e11 authored by Alexander Aring's avatar Alexander Aring Committed by Marcel Holtmann
Browse files

mac802154: remove const for non pointer in rdev-ops



This patches removes the const keyword in variables which are non
pointers. There is no sense to declare call by value parameters as
const.

Signed-off-by: default avatarAlexander Aring <alex.aring@gmail.com>
Reported-by: default avatarMarc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 6d5fb877
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -21,8 +21,7 @@ rdev_del_virtual_intf_deprecated(struct cfg802154_registered_device *rdev,
}

static inline int
rdev_set_channel(struct cfg802154_registered_device *rdev, const u8 page,
		 const u8 channel)
rdev_set_channel(struct cfg802154_registered_device *rdev, u8 page, u8 channel)
{
	return rdev->ops->set_channel(&rdev->wpan_phy, page, channel);
}
@@ -43,8 +42,7 @@ rdev_set_short_addr(struct cfg802154_registered_device *rdev,

static inline int
rdev_set_backoff_exponent(struct cfg802154_registered_device *rdev,
			  struct wpan_dev *wpan_dev, const u8 min_be,
			  const u8 max_be)
			  struct wpan_dev *wpan_dev, u8 min_be, u8 max_be)
{
	return rdev->ops->set_backoff_exponent(&rdev->wpan_phy, wpan_dev,
					       min_be, max_be);
@@ -52,8 +50,7 @@ rdev_set_backoff_exponent(struct cfg802154_registered_device *rdev,

static inline int
rdev_set_max_csma_backoffs(struct cfg802154_registered_device *rdev,
			   struct wpan_dev *wpan_dev,
			   const u8 max_csma_backoffs)
			   struct wpan_dev *wpan_dev, u8 max_csma_backoffs)
{
	return rdev->ops->set_max_csma_backoffs(&rdev->wpan_phy, wpan_dev,
						max_csma_backoffs);
@@ -61,8 +58,7 @@ rdev_set_max_csma_backoffs(struct cfg802154_registered_device *rdev,

static inline int
rdev_set_max_frame_retries(struct cfg802154_registered_device *rdev,
			   struct wpan_dev *wpan_dev,
			   const s8 max_frame_retries)
			   struct wpan_dev *wpan_dev, s8 max_frame_retries)
{
	return rdev->ops->set_max_frame_retries(&rdev->wpan_phy, wpan_dev,
						max_frame_retries);
@@ -70,7 +66,7 @@ rdev_set_max_frame_retries(struct cfg802154_registered_device *rdev,

static inline int
rdev_set_lbt_mode(struct cfg802154_registered_device *rdev,
		  struct wpan_dev *wpan_dev, const bool mode)
		  struct wpan_dev *wpan_dev, bool mode)
{
	return rdev->ops->set_lbt_mode(&rdev->wpan_phy, wpan_dev, mode);
}