Lines Matching refs:args
51 if (args && args->count && !args->u[0].v) in macio_do_gpio_write()
72 if (args == NULL || args->count == 0 || args->u[0].p == NULL) in macio_do_gpio_read()
76 *args->u[0].p = ((value & mask) >> rshift) ^ xor; in macio_do_gpio_read()
160 if (args == NULL || args->count == 0 || args->u[0].p == NULL) in macio_do_read_reg32()
163 *args->u[0].p = MACIO_IN32(offset); in macio_do_read_reg32()
183 if (args == NULL || args->count == 0 || args->u[0].p == NULL) in macio_do_read_reg8()
186 *((u8 *)(args->u[0].p)) = MACIO_IN8(offset); in macio_do_read_reg8()
196 if (args == NULL || args->count == 0 || args->u[0].p == NULL) in macio_do_read_reg32_msrx()
199 *args->u[0].p = ((MACIO_IN32(offset) & mask) >> shift) ^ xor; in macio_do_read_reg32_msrx()
209 if (args == NULL || args->count == 0 || args->u[0].p == NULL) in macio_do_read_reg8_msrx()
212 *((u8 *)(args->u[0].p)) = ((MACIO_IN8(offset) & mask) >> shift) ^ xor; in macio_do_read_reg8_msrx()
224 if (args == NULL || args->count == 0) in macio_do_write_reg32_slm()
229 val = args->u[0].v << shift; in macio_do_write_reg32_slm()
244 if (args == NULL || args->count == 0) in macio_do_write_reg8_slm()
249 val = args->u[0].v << shift; in macio_do_write_reg8_slm()