summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2005-04-22 04:47:39 +0200
committerMichael Brown2005-04-22 04:47:39 +0200
commit3e8c2aa78b94bdea867414d81b60c6196a8726c7 (patch)
tree491aaabaae81a11b1c54b5205a775157d09b939f
parentAdded friendly enable/disable functions (diff)
downloadipxe-3e8c2aa78b94bdea867414d81b60c6196a8726c7.tar.gz
ipxe-3e8c2aa78b94bdea867414d81b60c6196a8726c7.tar.xz
ipxe-3e8c2aa78b94bdea867414d81b60c6196a8726c7.zip
Fix up fill_mca_nic.
-rw-r--r--src/drivers/bus/mca.c3
-rw-r--r--src/include/mca.h8
2 files changed, 8 insertions, 3 deletions
diff --git a/src/drivers/bus/mca.c b/src/drivers/bus/mca.c
index 51f81d8d..9d572ef4 100644
--- a/src/drivers/bus/mca.c
+++ b/src/drivers/bus/mca.c
@@ -8,7 +8,6 @@
#include "string.h"
#include "io.h"
#include "console.h"
-#include "nic.h"
#include "mca.h"
/*
@@ -145,7 +144,7 @@ struct bus_driver mca_driver __bus_driver = {
* Fill in a nic structure
*
*/
-void mca_fill_nic ( struct nic *nic, struct mca_device *mca ) {
+void fill_mca_nic ( struct nic *nic, struct mca_device *mca ) {
/* ioaddr and irqno must be read in a device-dependent way
* from the POS registers
diff --git a/src/include/mca.h b/src/include/mca.h
index 236c9002..3961375a 100644
--- a/src/include/mca.h
+++ b/src/include/mca.h
@@ -9,7 +9,7 @@
#define MCA_H
#include "isa_ids.h"
-#include "dev.h"
+#include "nic.h"
#define MCA_BUS_TYPE 3
@@ -73,6 +73,12 @@ struct mca_driver {
}
/*
+ * Functions in mca.c
+ *
+ */
+extern void fill_mca_nic ( struct nic *nic, struct mca_device *mca );
+
+/*
* MCA bus global definition
*
*/