summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2005-04-22 13:56:27 +0200
committerMichael Brown2005-04-22 13:56:27 +0200
commit1e156f537b9c9411b68fba3bdf11413552a3c2a6 (patch)
treeb7eab8d86f25c5a5eb6824e3c37042af841708b1
parentUpdated to new device API. (diff)
downloadipxe-1e156f537b9c9411b68fba3bdf11413552a3c2a6.tar.gz
ipxe-1e156f537b9c9411b68fba3bdf11413552a3c2a6.tar.xz
ipxe-1e156f537b9c9411b68fba3bdf11413552a3c2a6.zip
Consistency
-rw-r--r--src/drivers/bus/mca.c2
-rw-r--r--src/include/eisa.h2
-rw-r--r--src/include/isa.h2
-rw-r--r--src/include/mca.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/drivers/bus/mca.c b/src/drivers/bus/mca.c
index 9d572ef4..2cfbec4e 100644
--- a/src/drivers/bus/mca.c
+++ b/src/drivers/bus/mca.c
@@ -144,7 +144,7 @@ struct bus_driver mca_driver __bus_driver = {
* Fill in a nic structure
*
*/
-void fill_mca_nic ( struct nic *nic, struct mca_device *mca ) {
+void mca_fill_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/eisa.h b/src/include/eisa.h
index 686c231a..ad716c28 100644
--- a/src/include/eisa.h
+++ b/src/include/eisa.h
@@ -76,7 +76,7 @@ struct eisa_driver {
*
*/
extern void eisa_device_enabled ( struct eisa_device *eisa, int enabled );
-extern void fill_eisa_nic ( struct nic *nic, struct eisa_device *eisa );
+extern void eisa_fill_nic ( struct nic *nic, struct eisa_device *eisa );
static inline void enable_eisa_device ( struct eisa_device *eisa ) {
eisa_device_enabled ( eisa, 1 );
diff --git a/src/include/isa.h b/src/include/isa.h
index 0082eab8..97f5f7e1 100644
--- a/src/include/isa.h
+++ b/src/include/isa.h
@@ -71,7 +71,7 @@ struct isa_driver {
* Functions in isa.c
*
*/
-extern void fill_isa_nic ( struct nic *nic, struct isa_device *isa );
+extern void isa_fill_nic ( struct nic *nic, struct isa_device *isa );
/*
* ISA bus global definition
diff --git a/src/include/mca.h b/src/include/mca.h
index 3961375a..aff8073f 100644
--- a/src/include/mca.h
+++ b/src/include/mca.h
@@ -76,7 +76,7 @@ struct mca_driver {
* Functions in mca.c
*
*/
-extern void fill_mca_nic ( struct nic *nic, struct mca_device *mca );
+extern void mca_fill_nic ( struct nic *nic, struct mca_device *mca );
/*
* MCA bus global definition