pwm_fcms          364 drivers/hwmon/w83795.c 	u8 pwm_fcms[2];		/* Register value */
pwm_fcms          537 drivers/hwmon/w83795.c 	data->pwm_fcms[0] = w83795_read(client, W83795_REG_FCMS1);
pwm_fcms          538 drivers/hwmon/w83795.c 	data->pwm_fcms[1] = w83795_read(client, W83795_REG_FCMS2);
pwm_fcms          896 drivers/hwmon/w83795.c 	if (data->pwm_fcms[0] & (1 << index)) {
pwm_fcms          943 drivers/hwmon/w83795.c 		data->pwm_fcms[0] &= ~(1 << index);
pwm_fcms          944 drivers/hwmon/w83795.c 		w83795_write(client, W83795_REG_FCMS1, data->pwm_fcms[0]);
pwm_fcms          953 drivers/hwmon/w83795.c 		data->pwm_fcms[0] |= (1 << index);
pwm_fcms          954 drivers/hwmon/w83795.c 		w83795_write(client, W83795_REG_FCMS1, data->pwm_fcms[0]);
pwm_fcms         1072 drivers/hwmon/w83795.c 		tmp = (data->pwm_fcms[1] >> index) & 1;
pwm_fcms         1107 drivers/hwmon/w83795.c 		data->pwm_fcms[1] &= ~(1 << index);
pwm_fcms         1108 drivers/hwmon/w83795.c 		data->pwm_fcms[1] |= tmp << index;
pwm_fcms         1109 drivers/hwmon/w83795.c 		w83795_write(client, W83795_REG_FCMS2, data->pwm_fcms[1]);