diff options
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 |