Commit 90590750 authored by Cristina Moraru's avatar Cristina Moraru Committed by Greg Kroah-Hartman

staging: octeon: Fix kernel-doc function description

Fix kernel-doc 'Excess function parameter' by moving
the description to the correct location. Also corrected
parameter description
Signed-off-by: default avatarCristina Moraru <cristina.moraru09@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d0fbf9f3
...@@ -364,13 +364,6 @@ static void cvm_oct_common_set_multicast_list(struct net_device *dev) ...@@ -364,13 +364,6 @@ static void cvm_oct_common_set_multicast_list(struct net_device *dev)
} }
} }
/**
* cvm_oct_common_set_mac_address - set the hardware MAC address for a device
* @dev: The device in question.
* @addr: Address structure to change it too.
*
* Returns Zero on success
*/
static int cvm_oct_set_mac_filter(struct net_device *dev) static int cvm_oct_set_mac_filter(struct net_device *dev)
{ {
struct octeon_ethernet *priv = netdev_priv(dev); struct octeon_ethernet *priv = netdev_priv(dev);
...@@ -413,6 +406,13 @@ static int cvm_oct_set_mac_filter(struct net_device *dev) ...@@ -413,6 +406,13 @@ static int cvm_oct_set_mac_filter(struct net_device *dev)
return 0; return 0;
} }
/**
* cvm_oct_common_set_mac_address - set the hardware MAC address for a device
* @dev: The device in question.
* @addr: Socket address.
*
* Returns Zero on success
*/
static int cvm_oct_common_set_mac_address(struct net_device *dev, void *addr) static int cvm_oct_common_set_mac_address(struct net_device *dev, void *addr)
{ {
int r = eth_mac_addr(dev, addr); int r = eth_mac_addr(dev, addr);
......
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