aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorBenjamin Thery <benjamin.thery@bull.net>2007-10-10 21:18:17 -0700
committerDavid S. Miller <davem@davemloft.net>2007-10-10 21:18:17 -0700
commit9ef4429b31b86d486b56b6c179fe52b5c7152f13 (patch)
treeff2533dc911d898403866086e385b08c4034cf9b /include/linux
parent[NET]: make netlink user -> kernel interface synchronious (diff)
downloadlinux-dev-9ef4429b31b86d486b56b6c179fe52b5c7152f13.tar.xz
linux-dev-9ef4429b31b86d486b56b6c179fe52b5c7152f13.zip
[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')
-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);
* dev_put - release reference to device
* @dev: network device
*
- * Hold reference to device to keep it from being freed.
+ * Release reference to device to allow it to be freed.
*/
static inline void dev_put(struct net_device *dev)
{
@@ -1075,7 +1075,7 @@ static inline void dev_put(struct net_device *dev)
* dev_hold - get reference to device
* @dev: network device
*
- * Release reference to device to allow it to be freed.
+ * Hold reference to device to keep it from being freed.
*/
static inline void dev_hold(struct net_device *dev)
{