aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netdevice.h
diff options
context:
space:
mode:
authorBenjamin Thery <benjamin.thery@bull.net>2007-10-11 00:18:17 -0400
committerDavid S. Miller <davem@davemloft.net>2007-10-11 00:18:17 -0400
commit9ef4429b31b86d486b56b6c179fe52b5c7152f13 (patch)
treeff2533dc911d898403866086e385b08c4034cf9b /include/linux/netdevice.h
parentcd40b7d3983c708aabe3d3008ec64ffce56d33b0 (diff)
[NET]: Fix dev_put() and dev_hold() comments
Trivial fix: Swap comments for dev_put() and dev_hold() to get them at the right place. Typo introduced by 4fa57c9ea9f36f9ca852f3a88ca5d2f1aebbc960. Signed-of-by: Benjamin Thery <benjamin.thery@bull.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r--include/linux/netdevice.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 4848c7afa4e7..5a11f889e56a 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -1064,7 +1064,7 @@ extern void netdev_run_todo(void);
1064 * dev_put - release reference to device 1064 * dev_put - release reference to device
1065 * @dev: network device 1065 * @dev: network device
1066 * 1066 *
1067 * Hold reference to device to keep it from being freed. 1067 * Release reference to device to allow it to be freed.
1068 */ 1068 */
1069static inline void dev_put(struct net_device *dev) 1069static inline void dev_put(struct net_device *dev)
1070{ 1070{
@@ -1075,7 +1075,7 @@ static inline void dev_put(struct net_device *dev)
1075 * dev_hold - get reference to device 1075 * dev_hold - get reference to device
1076 * @dev: network device 1076 * @dev: network device
1077 * 1077 *
1078 * Release reference to device to allow it to be freed. 1078 * Hold reference to device to keep it from being freed.
1079 */ 1079 */
1080static inline void dev_hold(struct net_device *dev) 1080static inline void dev_hold(struct net_device *dev)
1081{ 1081{