"Nobody cared interrupt" means your interrupt handler has a mistake and does not handle interrupt request it should process. Probably this is because of shared interrupt line and incorrect detection of source of the request in your interrupt handler. The suggestion to switch to polling mode allows kernel to avoid this situation where it passes interrupt request to your handler, but the result looks like nobody is processing this request. Switching to polling helps kernel, but actually does not resolve the problem. Please debug your interrupt handler to determine why interrupt request is not handled properly.
Have a great day,
Alexander
TIC
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------