Searched refs:irq_resource (Results 1 - 23 of 23) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pnp/
H A Dmanager.c139 if (!(dev->res.irq_resource[idx].flags & IORESOURCE_AUTO))
142 start = &dev->res.irq_resource[idx].start;
143 end = &dev->res.irq_resource[idx].end;
144 flags = &dev->res.irq_resource[idx].flags;
227 table->irq_resource[idx].name = NULL;
228 table->irq_resource[idx].start = -1;
229 table->irq_resource[idx].end = -1;
230 table->irq_resource[idx].flags = IORESOURCE_IRQ | IORESOURCE_AUTO | IORESOURCE_UNSET;
261 if (!(res->irq_resource[idx].flags & IORESOURCE_AUTO))
263 res->irq_resource[id
[all...]
H A Dresource.c360 resource_size_t * irq = &dev->res.irq_resource[idx].start;
363 if (cannot_compare(dev->res.irq_resource[idx].flags))
378 if (dev->res.irq_resource[tmp].flags & IORESOURCE_IRQ) {
379 if (dev->res.irq_resource[tmp].start == *irq)
409 if (tdev->res.irq_resource[tmp].flags & IORESOURCE_IRQ) {
410 if (cannot_compare(tdev->res.irq_resource[tmp].flags))
412 if ((tdev->res.irq_resource[tmp].start == *irq))
H A Dquirks.c190 irq = dev->res.irq_resource[0];
198 dev->res.irq_resource[0] = irq;
H A Dinterface.c413 dev->res.irq_resource[nirq].start =
414 dev->res.irq_resource[nirq].end = simple_strtoul(buf,&buf,0);
415 dev->res.irq_resource[nirq].flags = IORESOURCE_IRQ;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pnp/pnpbios/
H A Drsparser.c59 while (!(res->irq_resource[i].flags & IORESOURCE_UNSET) && i < PNP_MAX_IRQ) i++;
61 res->irq_resource[i].flags = IORESOURCE_IRQ; // Also clears _UNSET flag
63 res->irq_resource[i].flags |= IORESOURCE_DISABLED;
66 res->irq_resource[i].start =
67 res->irq_resource[i].end = (unsigned long) irq;
697 pnpbios_encode_irq(p, &res->irq_resource[irq]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pnp/pnpacpi/
H A Drsparser.c85 while (!(res->irq_resource[i].flags & IORESOURCE_UNSET) &&
91 res->irq_resource[i].flags = IORESOURCE_IRQ; // Also clears _UNSET flag
92 res->irq_resource[i].flags |= irq_flags(triggering, polarity);
95 res->irq_resource[i].flags |= IORESOURCE_DISABLED;
100 res->irq_resource[i].flags |= IORESOURCE_IRQ_SHAREABLE;
102 res->irq_resource[i].start = irq;
103 res->irq_resource[i].end = irq;
904 &res_table->irq_resource[irq]);
947 &res_table->irq_resource[irq]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/mach-sa1100/
H A Dirq.c226 static struct resource irq_resource = { variable in typeref:struct:resource
308 request_resource(&iomem_resource, &irq_resource);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/ad1816a/
H A Dad1816a.c148 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
175 pnp_resource_change(&cfg->irq_resource[0], mpu_irq[dev], 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/
H A Dals100.c139 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
159 pnp_resource_change(&cfg->irq_resource[0], mpu_irq[dev], 1);
H A Ddt019x.c120 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
144 pnp_resource_change(&cfg->irq_resource[0], mpu_irq[dev], 1);
H A Dazt2320.c153 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
176 pnp_resource_change(&cfg->irq_resource[0], mpu_irq[dev], 1);
H A Dcmi8330.c313 pnp_resource_change(&cfg->irq_resource[0], wssirq[dev], 1);
338 pnp_resource_change(&cfg->irq_resource[0], sbirq[dev], 1);
H A Dopl3sa2.c625 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
H A Des18xx.c2056 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/pnp/isapnp/
H A Dcore.c943 res->irq_resource[tmp].start = res->irq_resource[tmp].end = ret;
944 res->irq_resource[tmp].flags = IORESOURCE_IRQ;
975 for (tmp = 0; tmp < PNP_MAX_IRQ && (res->irq_resource[tmp].flags & (IORESOURCE_IRQ | IORESOURCE_UNSET)) == IORESOURCE_IRQ; tmp++) {
976 int irq = res->irq_resource[tmp].start;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dpnp.h60 #define pnp_irq(dev,bar) ((dev)->res.irq_resource[(bar)].start)
61 #define pnp_irq_flags(dev,bar) ((dev)->res.irq_resource[(bar)].flags)
127 struct resource irq_resource[PNP_MAX_IRQ]; member in struct:pnp_resource_table
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/sb/
H A Des968.c109 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
H A Dsb16.c289 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/cs423x/
H A Dcs4236.c286 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
345 pnp_resource_change(&cfg->irq_resource[0], mpu_irq[dev], 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/wavefront/
H A Dwavefront.c177 pnp_resource_change(&cfg->irq_resource[0], cs4232_pcm_irq[dev], 1);
205 pnp_resource_change(&cfg->irq_resource[0], ics2115_irq[dev], 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/rtc/
H A Drtc-cmos.c650 pnp->res.irq_resource[0].start);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/opti9xx/
H A Dopti92x-ad1848.c1646 pnp_resource_change(&cfg->irq_resource[0], irq, 1);
1694 pnp_resource_change(&cfg->irq_resource[0], mpu_irq, 1);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/isa/gus/
H A Dinterwave.c551 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);

Completed in 130 milliseconds