Lines Matching defs:change
47 bool *change, bool force_write);
2138 * @mask: Bitmask to change
2140 * @change: Boolean indicating if a write was done
2144 * Perform a read/modify/write cycle on the register field with change,
2152 bool *change, bool async, bool force)
2158 change, async, force);
2168 * @mask: Bitmask to change
2170 * @change: Boolean indicating if a write was done
2179 bool *change, bool async, bool force)
2189 change, async, force);
2368 /* If we have both a page change and a delay make sure to
2369 * write the regs and apply the delay before we change the
3019 bool *change, bool force_write)
3024 if (change)
3025 *change = false;
3029 if (ret == 0 && change)
3030 *change = true;
3041 if (ret == 0 && change)
3042 *change = true;
3054 * @mask: Bitmask to change
3056 * @change: Boolean indicating if a write was done
3060 * Perform a read/modify/write cycle on a register map with change, async, force
3073 bool *change, bool async, bool force)
3081 ret = _regmap_update_bits(map, reg, mask, val, change, force);