blob: 83cf081f3d3cccc4c81b4c1a3b51a97c83b66c52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright 2013 Freescale Semiconductor, Inc.
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <phy.h>
#include <fm_eth.h>
#include <asm/io.h>
#include <asm/immap_85xx.h>
#include <asm/fsl_serdes.h>
phy_interface_t fman_port_enet_if(enum fm_port port)
{
return PHY_INTERFACE_MODE_NONE;
}
|