diff options
-rw-r--r-- | drivers/qe/uec.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/qe/uec.c b/drivers/qe/uec.c index ed7ed65..b656ca6 100644 --- a/drivers/qe/uec.c +++ b/drivers/qe/uec.c @@ -1415,6 +1415,14 @@ int uec_initialize(int index) #ifdef CONFIG_UEC_ETH4 uec_info = ð4_uec_info; #endif + } else if (index == 4) { +#ifdef CONFIG_UEC_ETH5 + uec_info = ð5_uec_info; +#endif + } else if (index == 5) { +#ifdef CONFIG_UEC_ETH6 + uec_info = ð6_uec_info; +#endif } else { printf("%s: index is illegal.\n", __FUNCTION__); return -EINVAL; |