From mboxrd@z Thu Jan 1 00:00:00 1970 From: Graeme Russ Date: Fri, 21 Nov 2008 06:28:05 +1100 Subject: [U-Boot] [PATCH 1/2] Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c Message-ID: <4925BA45.80700@gmail.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: Graeme Russ --- 82559_eeprom.c is only compiled for i386 arch's (see /examples/Makefile lines 92-94). This modification should only impact sc520_cdp and sc520_spunk which need this define removed in order to compile examples/82559_eeprom.c | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/examples/82559_eeprom.c b/examples/82559_eeprom.c index d99af26..5e2eee9 100644 --- a/examples/82559_eeprom.c +++ b/examples/82559_eeprom.c @@ -19,7 +19,6 @@ */ #define _PPC_STRING_H_ /* avoid unnecessary str/mem functions */ -#define _LINUX_STRING_H_ /* avoid unnecessary str/mem functions */ #include #include -- 1.5.4.3