瀏覽代碼

Adds two more ethernet interface to 83xx

Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
richardretanubun 16 年之前
父節點
當前提交
44dcb73320
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      drivers/qe/uec.c

+ 8 - 0
drivers/qe/uec.c

@@ -1414,6 +1414,14 @@ int uec_initialize(int index)
 	} else if (index == 3) {
 #ifdef CONFIG_UEC_ETH4
 		uec_info = &eth4_uec_info;
+#endif
+	} else if (index == 4) {
+#ifdef CONFIG_UEC_ETH5
+		uec_info = &eth5_uec_info;
+#endif
+	} else if (index == 5) {
+#ifdef CONFIG_UEC_ETH6
+		uec_info = &eth6_uec_info;
 #endif
 	} else {
 		printf("%s: index is illegal.\n", __FUNCTION__);