Abort if register_dma_int.

Make register_dma_int cause Abort for heathrow and ohare like it does for amic.
This commit is contained in:
joevt 2023-08-15 15:28:25 -07:00 committed by dingusdev
parent 691fcfb657
commit e5bace03f7
2 changed files with 2 additions and 0 deletions

View File

@ -384,6 +384,7 @@ uint32_t HeathrowIC::register_dev_int(IntSrc src_id)
uint32_t HeathrowIC::register_dma_int(IntSrc src_id)
{
ABORT_F("Heathrow: register_dma_int() not implemented");
return 0;
}

View File

@ -213,6 +213,7 @@ uint32_t OHare::register_dev_int(IntSrc src_id)
uint32_t OHare::register_dma_int(IntSrc src_id)
{
ABORT_F("OHare: register_dma_int() not implemented");
return 0;
}