I've got the same message after BIOS upgrade on a Lenovo m625q thin client.
irqpoll
did fix the error but I didn't like the solution. Also I didn't want to downgrade firmware because of laziness. Which caused me more work at the end..
The error I had in dmesg
pointed at the sound card.
I found that spoofing OS made things work without error. acpi_osi=! acpi_osi='Windows 2013'
I first tried Windows 2015
which corresponds to windows 10 initial edition. (2013 is windows 8.1, ref linux sources), but it failed to boot completely.
To see available options for your particular firmware use
(cd /tmp && mkdir acpi && cd acpi && sudo acpidump -b && for i in *; do echo $i:; strings -a $i | grep -i windows; done)
Credit to the excellent answer: https://unix.stackexchange.com/a/609989/14907
I think it is worth trying instead or resorting to the irqpoll
which may or may not have measurable performance impact. I guess depends on the failing device/driver and it's usage.