summaryrefslogtreecommitdiff
path: root/src/hardware/pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hardware/pci.c')
-rw-r--r--src/hardware/pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hardware/pci.c b/src/hardware/pci.c
index 6c43448..84249f9 100644
--- a/src/hardware/pci.c
+++ b/src/hardware/pci.c
@@ -167,7 +167,7 @@ driver_t *pci_device_get_driver( pci_device_descriptor_t *descriptor, interrupt_
switch( descriptor->device_id ) {
case 0x8139: // RTL8139
driver = (driver_t *)malloc( sizeof( rtl8139_t ) );
- rtl8139_init( (rtl8139_t *)driver );
+ rtl8139_init( (rtl8139_t *)driver, interrupt, NULL );
break;
}
break;