From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jean-Christophe PLAGNIOL-VILLARD Date: Thu, 17 Jan 2008 00:26:39 +0100 Subject: [U-Boot-Users] resend #5: [PATCH 2/5]: add AcTux-1 board support In-Reply-To: <20080116215037.GB22629@discworld.dascon.de> References: <20080116215037.GB22629@discworld.dascon.de> Message-ID: <20080116232639.GD20117@game.jcrosoft.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 22:50 Wed 16 Jan , Michael Schwingen wrote: > Signed-off-by: Michael Schwingen > > diff --git a/board/actux1/Makefile b/board/actux1/Makefile > new file mode 100644 > index 0000000..83611e7 > + > +#if (CONFIG_COMMANDS & CFG_CMD_PCI) || defined(CONFIG_PCI) > +extern struct pci_controller hose; > +extern void pci_ixp_init (struct pci_controller *hose); > + > +void pci_init_board (void) > +{ > + extern void pci_ixp_init (struct pci_controller *hose); > + pci_ixp_init (&hose); > +} > +#endif > + Ack but when applying I will do this change -#if (CONFIG_COMMANDS & CFG_CMD_PCI) || defined(CONFIG_PCI) +#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI) or just resend this patch Best regards, J.