]> git.sur5r.net Git - u-boot/blobdiff - arch/arm/cpu/arm926ejs/davinci/et1011c.c
mtd: nand: davinci: add header file for driver definitions
[u-boot] / arch / arm / cpu / arm926ejs / davinci / et1011c.c
index da073457a30a5092f352c19176cc622facdd8f4d..9d53875b93da1eee7b390b974da412a6d6e60c7f 100644 (file)
@@ -3,25 +3,14 @@
  *
  * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #include <common.h>
 #include <net.h>
 #include <miiphy.h>
 #include <asm/arch/emac_defs.h>
+#include "../../../../../drivers/net/davinci_emac.h"
 
 #ifdef CONFIG_DRIVER_TI_EMAC
 
@@ -39,11 +28,9 @@ int et1011c_get_link_speed(int phy_addr)
        u_int16_t       data;
 
        if (davinci_eth_phy_read(phy_addr, MII_STATUS_REG, &data) && (data & 0x04)) {
-               davinci_eth_phy_read(EMAC_MDIO_PHY_NUM,
-                               MII_PHY_CONFIG_REG, &data);
+               davinci_eth_phy_read(phy_addr, MII_PHY_CONFIG_REG, &data);
                /* Enable 125MHz clock sourced from PHY */
-               davinci_eth_phy_write(EMAC_MDIO_PHY_NUM,
-                       MII_PHY_CONFIG_REG,
+               davinci_eth_phy_write(phy_addr, MII_PHY_CONFIG_REG,
                        data | PHY_SYS_CLK_EN);
                return (1);
        }