Lines Matching refs:temp
42 int temp; in vortex_wt_setstereo() local
45 temp = hwread(vortex->mmio, WT_STEREO(wt)); in vortex_wt_setstereo()
46 temp = (temp & 0xfe) | (stereo & 1); in vortex_wt_setstereo()
48 hwwrite(vortex->mmio, WT_STEREO(wt), temp); in vortex_wt_setstereo()
54 int temp; in vortex_wt_setdsout() local
57 temp = hwread(vortex->mmio, WT_DSREG((wt >= 0x20) ? 1 : 0)); in vortex_wt_setdsout()
59 temp |= (1 << (wt & 0x1f)); in vortex_wt_setdsout()
61 temp &= ~(1 << (wt & 0x1f)); in vortex_wt_setdsout()
62 hwwrite(vortex->mmio, WT_DSREG((wt >= 0x20) ? 1 : 0), temp); in vortex_wt_setdsout()
69 int temp; in vortex_wt_allocroute() local
92 temp = hwread(vortex->mmio, WT_PARM(wt, 3)); in vortex_wt_allocroute()
93 dev_dbg(vortex->card->dev, "WT PARM3: %x\n", temp); in vortex_wt_allocroute()