X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=irq.c;h=4f15bb8b9f4e63e5f8114954125f3f043bf1c5f7;hb=e3850e3c60ac379edf9d6fad436eeeca5718aa3a;hp=fad24848b1ca26813e7e4c933ddd02b73679e366;hpb=ca06f937be380b944745e795ea57bbd3a5563f55;p=ppcskel.git diff --git a/irq.c b/irq.c index fad2484..4f15bb8 100644 --- a/irq.c +++ b/irq.c @@ -14,7 +14,7 @@ Copyright (C) 2009 Andre Heider "dhewg" #include "hollywood.h" #include "ipc.h" #include "bootmii_ppc.h" -#include "ohci.h" +#include "usb/host/host.h" void irq_initialize(void) { @@ -111,12 +111,12 @@ void irq_handler(void) //sdhc_irq(); } if (hw_flags & IRQF_OHCI0) { - ohci0_irq(); + hcdi_irq(); write32(HW_PPCIRQFLAG, IRQF_OHCI0); } if (hw_flags & IRQF_OHCI1) { - write32(HW_PPCIRQFLAG, IRQF_OHCI1); //TODO: ohci1_irq(); + write32(HW_PPCIRQFLAG, IRQF_OHCI1); } hw_flags &= ~IRQF_ALL;