Lines Matching refs:temp
30 int temp; in vortex_wt_setstereo() local
33 temp = hwread(vortex->mmio, WT_STEREO(wt)); in vortex_wt_setstereo()
34 temp = (temp & 0xfe) | (stereo & 1); in vortex_wt_setstereo()
36 hwwrite(vortex->mmio, WT_STEREO(wt), temp); in vortex_wt_setstereo()
42 int temp; in vortex_wt_setdsout() local
45 temp = hwread(vortex->mmio, WT_DSREG((wt >= 0x20) ? 1 : 0)); in vortex_wt_setdsout()
47 temp |= (1 << (wt & 0x1f)); in vortex_wt_setdsout()
49 temp &= ~(1 << (wt & 0x1f)); in vortex_wt_setdsout()
50 hwwrite(vortex->mmio, WT_DSREG((wt >= 0x20) ? 1 : 0), temp); in vortex_wt_setdsout()
57 int temp; in vortex_wt_allocroute() local
80 temp = hwread(vortex->mmio, WT_PARM(wt, 3)); in vortex_wt_allocroute()
81 dev_dbg(vortex->card->dev, "WT PARM3: %x\n", temp); in vortex_wt_allocroute()