aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabriel Paubert <paubert@iram.es>2007-03-23 15:07:26 -0400
committerJeff Garzik <jeff@garzik.org>2007-04-28 11:01:02 -0400
commit144213d71ce8b2a1e0740dd25808143e9ace655a (patch)
tree96c755ce6b07b29b4a8a332cbfcfcef366c6191d
parent201f27e625cb2fe150e92d81d9725fe28c279792 (diff)
mv643xx_eth: make eth_port_uc_addr_{get,set}() calls symmetric
There is no good reason for the asymmetry in the parameters of eth_port_uc_addr_get() and eth_port_uc_addr_set(). Make them symmetric. Remove some gratuitous block comments while we're here. Signed-off-by: Gabriel Paubert <paubert@iram.es> Signed-off-by: Dale Farnsworth <dale@farnsworth.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
-rw-r--r--drivers/net/mv643xx_eth.c59
-rw-r--r--drivers/net/mv643xx_eth.h4
2 files changed, 13 insertions, 50 deletions
diff --git a/drivers/net/mv643xx_eth.c b/drivers/net/mv643xx_eth.c
index ab15ecd4b3d6..1799eee88db7 100644
--- a/drivers/net/mv643xx_eth.c
+++ b/drivers/net/mv643xx_eth.c
@@ -51,8 +51,8 @@
51#include "mv643xx_eth.h" 51#include "mv643xx_eth.h"
52 52
53/* Static function declarations */ 53/* Static function declarations */
54static void eth_port_uc_addr_get(struct net_device *dev, 54static void eth_port_uc_addr_get(unsigned int port_num, unsigned char *p_addr);
55 unsigned char *MacAddr); 55static void eth_port_uc_addr_set(unsigned int port_num, unsigned char *p_addr);
56static void eth_port_set_multicast_list(struct net_device *); 56static void eth_port_set_multicast_list(struct net_device *);
57static void mv643xx_eth_port_enable_tx(unsigned int port_num, 57static void mv643xx_eth_port_enable_tx(unsigned int port_num,
58 unsigned int queues); 58 unsigned int queues);
@@ -1381,7 +1381,7 @@ static int mv643xx_eth_probe(struct platform_device *pdev)
1381 port_num = mp->port_num = pd->port_number; 1381 port_num = mp->port_num = pd->port_number;
1382 1382
1383 /* set default config values */ 1383 /* set default config values */
1384 eth_port_uc_addr_get(dev, dev->dev_addr); 1384 eth_port_uc_addr_get(port_num, dev->dev_addr);
1385 mp->rx_ring_size = MV643XX_ETH_PORT_DEFAULT_RECEIVE_QUEUE_SIZE; 1385 mp->rx_ring_size = MV643XX_ETH_PORT_DEFAULT_RECEIVE_QUEUE_SIZE;
1386 mp->tx_ring_size = MV643XX_ETH_PORT_DEFAULT_TRANSMIT_QUEUE_SIZE; 1386 mp->tx_ring_size = MV643XX_ETH_PORT_DEFAULT_TRANSMIT_QUEUE_SIZE;
1387 1387
@@ -1839,26 +1839,9 @@ static void eth_port_start(struct net_device *dev)
1839} 1839}
1840 1840
1841/* 1841/*
1842 * eth_port_uc_addr_set - This function Set the port Unicast address. 1842 * eth_port_uc_addr_set - Write a MAC address into the port's hw registers
1843 *
1844 * DESCRIPTION:
1845 * This function Set the port Ethernet MAC address.
1846 *
1847 * INPUT:
1848 * unsigned int eth_port_num Port number.
1849 * char * p_addr Address to be set
1850 *
1851 * OUTPUT:
1852 * Set MAC address low and high registers. also calls
1853 * eth_port_set_filter_table_entry() to set the unicast
1854 * table with the proper information.
1855 *
1856 * RETURN:
1857 * N/A.
1858 *
1859 */ 1843 */
1860static void eth_port_uc_addr_set(unsigned int eth_port_num, 1844static void eth_port_uc_addr_set(unsigned int port_num, unsigned char *p_addr)
1861 unsigned char *p_addr)
1862{ 1845{
1863 unsigned int mac_h; 1846 unsigned int mac_h;
1864 unsigned int mac_l; 1847 unsigned int mac_l;
@@ -1868,40 +1851,24 @@ static void eth_port_uc_addr_set(unsigned int eth_port_num,
1868 mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) | 1851 mac_h = (p_addr[0] << 24) | (p_addr[1] << 16) | (p_addr[2] << 8) |
1869 (p_addr[3] << 0); 1852 (p_addr[3] << 0);
1870 1853
1871 mv_write(MV643XX_ETH_MAC_ADDR_LOW(eth_port_num), mac_l); 1854 mv_write(MV643XX_ETH_MAC_ADDR_LOW(port_num), mac_l);
1872 mv_write(MV643XX_ETH_MAC_ADDR_HIGH(eth_port_num), mac_h); 1855 mv_write(MV643XX_ETH_MAC_ADDR_HIGH(port_num), mac_h);
1873 1856
1874 /* Accept frames of this address */ 1857 /* Accept frames with this address */
1875 table = MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE(eth_port_num); 1858 table = MV643XX_ETH_DA_FILTER_UNICAST_TABLE_BASE(port_num);
1876 eth_port_set_filter_table_entry(table, p_addr[5] & 0x0f); 1859 eth_port_set_filter_table_entry(table, p_addr[5] & 0x0f);
1877} 1860}
1878 1861
1879/* 1862/*
1880 * eth_port_uc_addr_get - This function retrieves the port Unicast address 1863 * eth_port_uc_addr_get - Read the MAC address from the port's hw registers
1881 * (MAC address) from the ethernet hw registers.
1882 *
1883 * DESCRIPTION:
1884 * This function retrieves the port Ethernet MAC address.
1885 *
1886 * INPUT:
1887 * unsigned int eth_port_num Port number.
1888 * char *MacAddr pointer where the MAC address is stored
1889 *
1890 * OUTPUT:
1891 * Copy the MAC address to the location pointed to by MacAddr
1892 *
1893 * RETURN:
1894 * N/A.
1895 *
1896 */ 1864 */
1897static void eth_port_uc_addr_get(struct net_device *dev, unsigned char *p_addr) 1865static void eth_port_uc_addr_get(unsigned int port_num, unsigned char *p_addr)
1898{ 1866{
1899 struct mv643xx_private *mp = netdev_priv(dev);
1900 unsigned int mac_h; 1867 unsigned int mac_h;
1901 unsigned int mac_l; 1868 unsigned int mac_l;
1902 1869
1903 mac_h = mv_read(MV643XX_ETH_MAC_ADDR_HIGH(mp->port_num)); 1870 mac_h = mv_read(MV643XX_ETH_MAC_ADDR_HIGH(port_num));
1904 mac_l = mv_read(MV643XX_ETH_MAC_ADDR_LOW(mp->port_num)); 1871 mac_l = mv_read(MV643XX_ETH_MAC_ADDR_LOW(port_num));
1905 1872
1906 p_addr[0] = (mac_h >> 24) & 0xff; 1873 p_addr[0] = (mac_h >> 24) & 0xff;
1907 p_addr[1] = (mac_h >> 16) & 0xff; 1874 p_addr[1] = (mac_h >> 16) & 0xff;
diff --git a/drivers/net/mv643xx_eth.h b/drivers/net/mv643xx_eth.h
index 7d4e90cf49e8..82f8c0cbfb64 100644
--- a/drivers/net/mv643xx_eth.h
+++ b/drivers/net/mv643xx_eth.h
@@ -346,10 +346,6 @@ static void eth_port_init(struct mv643xx_private *mp);
346static void eth_port_reset(unsigned int eth_port_num); 346static void eth_port_reset(unsigned int eth_port_num);
347static void eth_port_start(struct net_device *dev); 347static void eth_port_start(struct net_device *dev);
348 348
349/* Port MAC address routines */
350static void eth_port_uc_addr_set(unsigned int eth_port_num,
351 unsigned char *p_addr);
352
353/* PHY and MIB routines */ 349/* PHY and MIB routines */
354static void ethernet_phy_reset(unsigned int eth_port_num); 350static void ethernet_phy_reset(unsigned int eth_port_num);
355 351