Commit 982e2b73 authored by Stefan Schmidt's avatar Stefan Schmidt

net: mac802154: Fixup function parameter name in docs

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: default avatarStefan Schmidt <stefan@datenfreihafen.org>
parent 4161634b
...@@ -15,7 +15,7 @@ const void *const mac802154_wpan_phy_privid = &mac802154_wpan_phy_privid; ...@@ -15,7 +15,7 @@ const void *const mac802154_wpan_phy_privid = &mac802154_wpan_phy_privid;
/** /**
* ieee802154_wake_queue - wake ieee802154 queue * ieee802154_wake_queue - wake ieee802154 queue
* @local: main mac object * @hw: main hardware object
* *
* Tranceivers usually have either one transmit framebuffer or one framebuffer * Tranceivers usually have either one transmit framebuffer or one framebuffer
* for both transmitting and receiving. Hence, the core currently only handles * for both transmitting and receiving. Hence, the core currently only handles
...@@ -41,7 +41,7 @@ static void ieee802154_wake_queue(struct ieee802154_hw *hw) ...@@ -41,7 +41,7 @@ static void ieee802154_wake_queue(struct ieee802154_hw *hw)
/** /**
* ieee802154_stop_queue - stop ieee802154 queue * ieee802154_stop_queue - stop ieee802154 queue
* @local: main mac object * @hw: main hardware object
* *
* Tranceivers usually have either one transmit framebuffer or one framebuffer * Tranceivers usually have either one transmit framebuffer or one framebuffer
* for both transmitting and receiving. Hence, the core currently only handles * for both transmitting and receiving. Hence, the core currently only handles
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment