From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Thu, 11 Oct 2007 10:32:28 +0200 Subject: [U-Boot-Users] [PATCH] Fix net drivers include headers In-Reply-To: <1192091549-25875-23-git-send-email-plagnioj@jcrosoft.com> References: [PATCH] Dirvers Reorganization Patch for Grant Likely Kconfig Patch <1192091549-25875-1-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-2-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-3-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-4-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-5-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-6-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-7-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-8-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-9-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-10-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-11-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-12-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-13-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-14-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-15-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-16-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-17-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-18-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-19-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-20-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-21-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-22-git-send-email-plagnioj@jcrosoft.com> <1192091549-25875-23-git-send-email-plagnioj@jcrosoft.com> Message-ID: <1192091549-25875-24-git-send-email-plagnioj@jcrosoft.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- board/mpl/vcma9/cmd_vcma9.c | 2 +- board/netstar/eeprom.c | 2 +- board/voiceblue/eeprom.c | 2 +- examples/smc91111_eeprom.c | 2 +- lib_arm/board.c | 4 ++-- lib_blackfin/board.c | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/board/mpl/vcma9/cmd_vcma9.c b/board/mpl/vcma9/cmd_vcma9.c index 227c492..90a1b08 100644 --- a/board/mpl/vcma9/cmd_vcma9.c +++ b/board/mpl/vcma9/cmd_vcma9.c @@ -31,7 +31,7 @@ #include "../common/common_util.h" #if defined(CONFIG_DRIVER_CS8900) -#include <../drivers/cs8900.h> +#include <../drivers/net/cs8900.h> static uchar cs8900_chksum(ushort data) { diff --git a/board/netstar/eeprom.c b/board/netstar/eeprom.c index fef3822..0de594b 100644 --- a/board/netstar/eeprom.c +++ b/board/netstar/eeprom.c @@ -26,7 +26,7 @@ #include #include -#include "../drivers/smc91111.h" +#include "../drivers/net/smc91111.h" #define SMC_BASE_ADDRESS CONFIG_SMC91111_BASE diff --git a/board/voiceblue/eeprom.c b/board/voiceblue/eeprom.c index 0ad1b66..d8ea6e5 100644 --- a/board/voiceblue/eeprom.c +++ b/board/voiceblue/eeprom.c @@ -26,7 +26,7 @@ #include #include -#include "../drivers/smc91111.h" +#include "../drivers/net/smc91111.h" #define SMC_BASE_ADDRESS CONFIG_SMC91111_BASE diff --git a/examples/smc91111_eeprom.c b/examples/smc91111_eeprom.c index 98e3e86..b8a3594 100644 --- a/examples/smc91111_eeprom.c +++ b/examples/smc91111_eeprom.c @@ -29,7 +29,7 @@ #include #include -#include "../drivers/smc91111.h" +#include "../drivers/net/smc91111.h" #define SMC_BASE_ADDRESS CONFIG_SMC91111_BASE #define EEPROM 0x1; diff --git a/lib_arm/board.c b/lib_arm/board.c index d28afc5..52bc7a8 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -46,10 +46,10 @@ #include #ifdef CONFIG_DRIVER_SMC91111 -#include "../drivers/smc91111.h" +#include "../drivers/net/smc91111.h" #endif #ifdef CONFIG_DRIVER_LAN91C96 -#include "../drivers/lan91c96.h" +#include "../drivers/net/lan91c96.h" #endif DECLARE_GLOBAL_DATA_PTR; diff --git a/lib_blackfin/board.c b/lib_blackfin/board.c index 7c9990f..86a3b67 100644 --- a/lib_blackfin/board.c +++ b/lib_blackfin/board.c @@ -35,7 +35,7 @@ #include #include "blackfin_board.h" #include -#include "../drivers/smc91111.h" +#include "../drivers/net/smc91111.h" #if defined(CONFIG_BF537)&&defined(CONFIG_POST) #include -- 1.5.3.2