summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2005-04-13 00:42:52 +0200
committerMichael Brown2005-04-13 00:42:52 +0200
commitc2a21744f6ad0989590a768e3a721fd233ff6959 (patch)
treee78c60fcb6f32ece41faf1e0dd82dcc77d3a97ed /src
parentAble to at least compile again now. (diff)
downloadipxe-c2a21744f6ad0989590a768e3a721fd233ff6959.tar.gz
ipxe-c2a21744f6ad0989590a768e3a721fd233ff6959.tar.xz
ipxe-c2a21744f6ad0989590a768e3a721fd233ff6959.zip
We now record a pointer to the struct pci_device, since it's carried
around in struct dev anyway.
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/drivers/net/undi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/i386/drivers/net/undi.h b/src/arch/i386/drivers/net/undi.h
index 3ba76c357..221cbbc82 100644
--- a/src/arch/i386/drivers/net/undi.h
+++ b/src/arch/i386/drivers/net/undi.h
@@ -167,7 +167,7 @@ typedef struct undi {
uint8_t opened; /* pxenv_undi_open() has been called */
/* Parameters that we need to store for future reference
*/
- struct pci_device pci;
+ struct pci_device *pci;
irq_t irq;
} undi_t;