Skip to content
Snippets Groups Projects
Commit 25fb02ab authored by Weirich, Bernhard's avatar Weirich, Bernhard Committed by Stefan Roese
Browse files

Fix incorrect array size of phy settings for 405EX


Change bd_t->bi_phy* arrays from 1 to 2 for PPC405EX since
405EX has 2 ethernet interfaces.

Signed-off-by: default avatarBernhard Weirich <bernhard.weirich@riedel.net>
Signed-off-by: default avatarStefan Roese <sr@denx.de>
parent 56fa45d5
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ typedef struct bd_info { ...@@ -132,7 +132,7 @@ typedef struct bd_info {
defined(CONFIG_460EX) || defined(CONFIG_460GT) defined(CONFIG_460EX) || defined(CONFIG_460GT)
int bi_phynum[4]; /* Determines phy mapping */ int bi_phynum[4]; /* Determines phy mapping */
int bi_phymode[4]; /* Determines phy mode */ int bi_phymode[4]; /* Determines phy mode */
#elif defined(CONFIG_405EP) || defined(CONFIG_440) #elif defined(CONFIG_405EP) || defined(CONFIG_405EX) || defined(CONFIG_440)
int bi_phynum[2]; /* Determines phy mapping */ int bi_phynum[2]; /* Determines phy mapping */
int bi_phymode[2]; /* Determines phy mode */ int bi_phymode[2]; /* Determines phy mode */
#else #else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment