Lines Matching defs:sc
86 struct ess_softc *sc = device_private(self);
89 sc->sc_dev = self;
91 if (pnpbios_io_map(aa->pbt, aa->resc, 0, &sc->sc_iot, &sc->sc_ioh)) {
96 sc->sc_ic = aa->ic;
99 pnpbios_getiobase(aa->pbt, aa->resc, 0, 0, &sc->sc_iobase);
101 sc->sc_audio1.ist = IST_EDGE;
102 sc->sc_audio2.ist = IST_EDGE;
104 if (pnpbios_getirqnum(aa->pbt, aa->resc, 0, &sc->sc_audio1.irq,
110 if (pnpbios_getirqnum(aa->pbt, aa->resc, 1, &sc->sc_audio2.irq,
112 sc->sc_audio2.irq = -1;
114 if (pnpbios_getdmachan(aa->pbt, aa->resc, 0, &sc->sc_audio1.drq)) {
119 if (pnpbios_getdmachan(aa->pbt, aa->resc, 1, &sc->sc_audio2.drq))
120 sc->sc_audio2.drq = -1;
128 if (!essmatch(sc)) {
130 pnpbios_io_unmap(aa->pbt, aa->resc, 0, sc->sc_iot, sc->sc_ioh);
134 essattach(sc, 0);