.
.
.
common/board_r.c
1 static int initr_net(void)
2 {
3 puts("Net: ");
4 eth_initialize();
5 #if defined(CONFIG_RESET_PHY_R)
6 debug("Reset Ethernet PHY\n");
7 reset_phy();
8 #endif
9 return 0;
10 }
.
.
4번 줄의
eth_initialize
함수를 실행합니다. 5번 줄의CONFIG_RESET_PHY_R
은 선언되어 있지 않아 if문은 수행되지 않습니다.