if (kstrtol(buf, 10, &temp))
                return -EINVAL;
 
-       temp = clamp_val(temp, 0, 10000);
-       temp = DIV_ROUND_CLOSEST(temp, 10);
+       temp = clamp_val(temp, 0, 100000);
+       temp = DIV_ROUND_CLOSEST(temp, 100);
 
        regs[0] = temp & 0xff;
        regs[1] = (temp >> 8) & 0xff;
 {
        struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
 
-       return sprintf(buf, "%d\n", 255 * (50 + (attr->index * 10)) / 100);
+       return sprintf(buf, "%d\n", 255 * (50 + (attr->index * 10)));
 }
 
 static SENSOR_DEVICE_ATTR_RO(pwm1_auto_point1_pwm, pwm_auto_point_pwm, 0);