1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-22 11:17:19 +00:00

Enable patth-through of IRQ30 and IRQ31 to PIC just as comment states

This commit is contained in:
Oleksandr Tymoshenko 2013-06-29 23:40:44 +00:00
parent 3666c4917b
commit cbda62170f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=252393

View File

@ -110,7 +110,7 @@ versatile_sic_attach(device_t dev)
* Let PCI and Ethernet interrupts pass through
* IRQ25, IRQ27..IRQ31
*/
pass_irqs = (7 << 27) | (1 << 25);
pass_irqs = (0x1f << 27) | (1 << 25);
sic_write_4(sc, SIC_PICENSET, pass_irqs);
return (0);