Hi,
I have checked the booting log in am335x and got the following message
mux: Failed to setup hwmod io irq -22
This message comes from mux.c , it seems like failed in request_irq function
ret = request_irq(omap_prcm_event_to_irq("io"),
omap_hwmod_mux_handle_irq, IRQF_SHARED | IRQF_NO_SUSPEND,
"hwmod_io", omap_mux_late_init);
if (ret)
pr_warning("mux: Failed to setup hwmod io irq %d\n", ret);
This is just a warning message. Should I be concerned? Is there anything wrong?
Thank you.