Lines Matching refs:index
45 * @index: the bit index
48 static int vx_read_one_cbit(struct vx_core *chip, int index)
55 vx_outb(chip, RUER, index & XX_UER_CBITS_OFFSET_MASK);
59 vx_outl(chip, RUER, index & XX_UER_CBITS_OFFSET_MASK);
68 * @index: the bit index
71 static void vx_write_one_cbit(struct vx_core *chip, int index, int val)
77 vx_outb(chip, RUER, (val << 7) | (index & XX_UER_CBITS_OFFSET_MASK));
80 vx_outl(chip, RUER, (val << 7) | (index & XX_UER_CBITS_OFFSET_MASK));