busses/mmc/sdhci_pci: Return B_UNHANDLED_INTERRUPT at end of non-void func

* I'm making an assumption here this is the desired result since interrupts
  are unhandled at the end of the function.
* Pointed out by gcc
This commit is contained in:
Alexander von Gluck IV
2018-12-10 16:01:07 +00:00
parent 4089701dbd
commit b279d6def1
+2 -1
View File
@@ -356,8 +356,9 @@ sdhci_generic_interrupt(void* data)
}
intmask &= ~(SDHCI_INT_BUS_POWER | SDHCI_INT_CARD_INS
|SDHCI_INT_CARD_REM | SDHCI_INT_CMD_MASK);
| SDHCI_INT_CARD_REM | SDHCI_INT_CMD_MASK);
return B_UNHANDLED_INTERRUPT;
}