diff options
| author | Stefano Babic <sbabic@denx.de> | 2012-11-10 08:05:54 +0100 | 
|---|---|---|
| committer | Stefano Babic <sbabic@denx.de> | 2012-11-10 08:05:54 +0100 | 
| commit | 3e4d27b06d7484040355e22eec2cbce7335d6dab (patch) | |
| tree | 9672a2bb2e4ce0edc0ab776ddf0e2ca8e39a5f62 /drivers/net/fm/init.c | |
| parent | bad05afe083eec0467220de21683443292c5012e (diff) | |
| parent | 59852d03867108217fe88e3bfc3e1e9cedfe63c5 (diff) | |
| download | olio-uboot-2014.01-3e4d27b06d7484040355e22eec2cbce7335d6dab.tar.xz olio-uboot-2014.01-3e4d27b06d7484040355e22eec2cbce7335d6dab.zip | |
Merge git://git.denx.de/u-boot
Diffstat (limited to 'drivers/net/fm/init.c')
| -rw-r--r-- | drivers/net/fm/init.c | 18 | 
1 files changed, 18 insertions, 0 deletions
| diff --git a/drivers/net/fm/init.c b/drivers/net/fm/init.c index 736b8b958..ae389b884 100644 --- a/drivers/net/fm/init.c +++ b/drivers/net/fm/init.c @@ -38,6 +38,15 @@ struct fm_eth_info fm_info[] = {  #if (CONFIG_SYS_NUM_FM1_DTSEC >= 5)  	FM_DTSEC_INFO_INITIALIZER(1, 5),  #endif +#if (CONFIG_SYS_NUM_FM1_DTSEC >= 6) +	FM_DTSEC_INFO_INITIALIZER(1, 6), +#endif +#if (CONFIG_SYS_NUM_FM1_DTSEC >= 7) +	FM_DTSEC_INFO_INITIALIZER(1, 9), +#endif +#if (CONFIG_SYS_NUM_FM1_DTSEC >= 8) +	FM_DTSEC_INFO_INITIALIZER(1, 10), +#endif  #if (CONFIG_SYS_NUM_FM2_DTSEC >= 1)  	FM_DTSEC_INFO_INITIALIZER(2, 1),  #endif @@ -53,6 +62,15 @@ struct fm_eth_info fm_info[] = {  #if (CONFIG_SYS_NUM_FM2_DTSEC >= 5)  	FM_DTSEC_INFO_INITIALIZER(2, 5),  #endif +#if (CONFIG_SYS_NUM_FM2_DTSEC >= 6) +	FM_DTSEC_INFO_INITIALIZER(2, 6), +#endif +#if (CONFIG_SYS_NUM_FM2_DTSEC >= 7) +	FM_DTSEC_INFO_INITIALIZER(2, 9), +#endif +#if (CONFIG_SYS_NUM_FM2_DTSEC >= 8) +	FM_DTSEC_INFO_INITIALIZER(2, 10), +#endif  #if (CONFIG_SYS_NUM_FM1_10GEC >= 1)  	FM_TGEC_INFO_INITIALIZER(1, 1),  #endif |