diff options
| author | Fabio Estevam <festevam@gmail.com> | 2011-12-20 05:46:31 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-01-16 08:40:09 +0100 | 
| commit | be252b654a018cd9f513b0f2a5da4855a209c40c (patch) | |
| tree | d9314c6c7e5bc9e0c426f0996abc3cb2578d2d16 /drivers/net/fec_mxc.h | |
| parent | 3c057897e9873fb95bfe6eae5e483d724670a288 (diff) | |
| download | olio-uboot-2014.01-be252b654a018cd9f513b0f2a5da4855a209c40c.tar.xz olio-uboot-2014.01-be252b654a018cd9f513b0f2a5da4855a209c40c.zip | |
net: imx: Add multi-FEC support for imx_get_mac_from_fuse
Add multi-FEC support for imx_get_mac_from_fuse by passing dev_id as a parameter.
This feature is important on mx28 SoC for example that has two FEC ports.
Cc: Ben Warren <biggerbadderben@gmail.com>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'drivers/net/fec_mxc.h')
| -rw-r--r-- | drivers/net/fec_mxc.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/drivers/net/fec_mxc.h b/drivers/net/fec_mxc.h index 39337bfa1..9825eab29 100644 --- a/drivers/net/fec_mxc.h +++ b/drivers/net/fec_mxc.h @@ -32,7 +32,7 @@  #ifndef __FEC_MXC_H  #define __FEC_MXC_H -void imx_get_mac_from_fuse(unsigned char *mac); +void imx_get_mac_from_fuse(int dev_id, unsigned char *mac);  /**   * Layout description of the FEC |