Skip to content

Commit

Permalink
net: mac802154: Fixup function parameter name in docs
Browse files Browse the repository at this point in the history
The function parameter name was wrong in kdocs.

net/mac802154/util.c:27: warning: Function parameter or member 'hw' not described in 'ieee802154_wake_queue'
net/mac802154/util.c:27: warning: Excess function parameter 'local' description in 'ieee802154_wake_queue'
net/mac802154/util.c:53: warning: Function parameter or member 'hw' not described in 'ieee802154_stop_queue'
net/mac802154/util.c:53: warning: Excess function parameter 'local' description in 'ieee802154_stop_queue'

Fixing name and description.

Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
  • Loading branch information
Stefan Schmidt committed Oct 26, 2022
1 parent 4161634 commit 982e2b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions net/mac802154/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const void *const mac802154_wpan_phy_privid = &mac802154_wpan_phy_privid;

/**
* ieee802154_wake_queue - wake ieee802154 queue
* @local: main mac object
* @hw: main hardware object
*
* Tranceivers usually have either one transmit framebuffer or one framebuffer
* for both transmitting and receiving. Hence, the core currently only handles
Expand All @@ -41,7 +41,7 @@ static void ieee802154_wake_queue(struct ieee802154_hw *hw)

/**
* ieee802154_stop_queue - stop ieee802154 queue
* @local: main mac object
* @hw: main hardware object
*
* Tranceivers usually have either one transmit framebuffer or one framebuffer
* for both transmitting and receiving. Hence, the core currently only handles
Expand Down

0 comments on commit 982e2b7

Please sign in to comment.