[QCA955x] make the USB EHCI interrupts shareable.

There's two EHCI controllers in the QCA955x SoCs - they have different
interrupts available via various demux registers, but they both tie to
IP3.

So for now, allow them to be sharable so they can hang off of IP3.
This commit is contained in:
Adrian Chadd 2015-03-02 02:08:43 +00:00
parent 232bf4c5d6
commit e621924898
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279511

View File

@ -119,7 +119,7 @@ ar71xx_ehci_attach(device_t self)
rid = 0;
sc->sc_irq_res = bus_alloc_resource_any(self, SYS_RES_IRQ, &rid,
RF_ACTIVE);
RF_ACTIVE | RF_SHAREABLE);
if (sc->sc_irq_res == NULL) {
device_printf(self, "Could not allocate irq\n");
goto error;