Browse Source

Consistency

tags/v0.9.3
Michael Brown 19 years ago
parent
commit
1e156f537b
4 changed files with 4 additions and 4 deletions
  1. 1
    1
      src/drivers/bus/mca.c
  2. 1
    1
      src/include/eisa.h
  3. 1
    1
      src/include/isa.h
  4. 1
    1
      src/include/mca.h

+ 1
- 1
src/drivers/bus/mca.c View File

@@ -144,7 +144,7 @@ struct bus_driver mca_driver __bus_driver = {
144 144
  * Fill in a nic structure
145 145
  *
146 146
  */
147
-void fill_mca_nic ( struct nic *nic, struct mca_device *mca ) {
147
+void mca_fill_nic ( struct nic *nic, struct mca_device *mca ) {
148 148
 
149 149
 	/* ioaddr and irqno must be read in a device-dependent way
150 150
 	 * from the POS registers

+ 1
- 1
src/include/eisa.h View File

@@ -76,7 +76,7 @@ struct eisa_driver {
76 76
  *
77 77
  */
78 78
 extern void eisa_device_enabled ( struct eisa_device *eisa, int enabled );
79
-extern void fill_eisa_nic ( struct nic *nic, struct eisa_device *eisa );
79
+extern void eisa_fill_nic ( struct nic *nic, struct eisa_device *eisa );
80 80
 
81 81
 static inline void enable_eisa_device ( struct eisa_device *eisa ) {
82 82
 	eisa_device_enabled ( eisa, 1 );

+ 1
- 1
src/include/isa.h View File

@@ -71,7 +71,7 @@ struct isa_driver {
71 71
  * Functions in isa.c
72 72
  *
73 73
  */
74
-extern void fill_isa_nic ( struct nic *nic, struct isa_device *isa );
74
+extern void isa_fill_nic ( struct nic *nic, struct isa_device *isa );
75 75
 
76 76
 /*
77 77
  * ISA bus global definition

+ 1
- 1
src/include/mca.h View File

@@ -76,7 +76,7 @@ struct mca_driver {
76 76
  * Functions in mca.c
77 77
  *
78 78
  */
79
-extern void fill_mca_nic ( struct nic *nic, struct mca_device *mca );
79
+extern void mca_fill_nic ( struct nic *nic, struct mca_device *mca );
80 80
 
81 81
 /*
82 82
  * MCA bus global definition

Loading…
Cancel
Save