From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vlad Lungu Date: Wed, 10 Oct 2007 23:02:09 +0300 Subject: [U-Boot-Users] [PATCH] Fixed pcnet io_base Message-ID: <470D2FC1.3070906@comsys.ro> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Bus and phys address are not always the same Signed-off-by: Vlad Lungu --- drivers/pcnet.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/pcnet.c b/drivers/pcnet.c index 2af0e8f..22edb48 100644 --- a/drivers/pcnet.c +++ b/drivers/pcnet.c @@ -196,6 +196,7 @@ int pcnet_initialize(bd_t *bis) * Setup the PCI device. */ pci_read_config_dword(devbusfn, PCI_BASE_ADDRESS_0, (unsigned int *)&dev->iobase); + dev->iobase=pci_io_to_phys(devbusfn,dev->iobase); dev->iobase &= ~0xf; PCNET_DEBUG1("%s: devbusfn=0x%x iobase=0x%x: ", -- 1.5.2.2