Lines Matching refs:hwiOps
51 HwiControllerOps *hwiOps = ArchIntOpsGet();
52 if (hwiOps->triggerIrq == NULL) {
56 return hwiOps->triggerIrq(hwiNum);
61 HwiControllerOps *hwiOps = ArchIntOpsGet();
62 if (hwiOps->enableIrq == NULL) {
66 return hwiOps->enableIrq(hwiNum);
71 HwiControllerOps *hwiOps = ArchIntOpsGet();
72 if (hwiOps->disableIrq == NULL) {
76 return hwiOps->disableIrq(hwiNum);
81 HwiControllerOps *hwiOps = ArchIntOpsGet();
82 if (hwiOps->clearIrq == NULL) {
86 return hwiOps->clearIrq(hwiNum);
91 HwiControllerOps *hwiOps = ArchIntOpsGet();
92 if (hwiOps->setIrqPriority == NULL) {
96 return hwiOps->setIrqPriority(hwiNum, priority);
101 HwiControllerOps *hwiOps = ArchIntOpsGet();
102 return hwiOps->getCurIrqNum();