]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
Fix type of dummy_irq()
authorMichael Brown <mcb30@etherboot.org>
Wed, 13 Apr 2005 01:28:43 +0000 (01:28 +0000)
committerMichael Brown <mcb30@etherboot.org>
Wed, 13 Apr 2005 01:28:43 +0000 (01:28 +0000)
src/core/nic.c
src/include/nic.h

index 8b9d64d12ee4425dcf730d5d699f871a296fd10f..dd02060f52ca2a8a1c3cb830a5371c83be8fd808 100644 (file)
@@ -380,7 +380,7 @@ int dummy_connect ( struct nic *nic __unused ) {
        return 1;
 }
 
-int dummy_irq ( struct nic *nic __unused ) {
+int dummy_irq ( struct nic *nic __unused, irq_action_t irq_action __unused ) {
        return 1;
 }
 
index 439e5a90bc15ccab6510dd43bb255bbe33cd4b39..02fcafc1b564ce67630b653b49a3057483cddec0 100644 (file)
@@ -52,7 +52,7 @@ struct nic_operations {
 struct dev;
 extern struct nic * nic_device ( struct dev * dev );
 extern int dummy_connect ( struct nic *nic );
-extern int dummy_irq ( struct nic *nic );
+extern void dummy_irq ( struct nic *nic, irq_action_t irq_action );
 
 /*
  * Functions that implicitly operate on the current boot device