Loading drivers/hid/hid-magicmouse.c +1 −1 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ MODULE_PARM_DESC(emulate_scroll_wheel, "Emulate a scroll wheel"); static unsigned int scroll_speed = 32; static int param_set_scroll_speed(const char *val, struct kernel_param *kp) { unsigned long speed; if (!val || strict_strtoul(val, 0, &speed) || speed > 63) if (!val || kstrtoul(val, 0, &speed) || speed > 63) return -EINVAL; scroll_speed = speed; return 0; Loading drivers/hid/hid-ntrig.c +6 −6 Original line number Diff line number Diff line Loading @@ -237,7 +237,7 @@ static ssize_t set_min_width(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_width) Loading Loading @@ -272,7 +272,7 @@ static ssize_t set_min_height(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_height) Loading Loading @@ -306,7 +306,7 @@ static ssize_t set_activate_slack(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > 0x7f) Loading Loading @@ -341,7 +341,7 @@ static ssize_t set_activation_width(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_width) Loading Loading @@ -377,7 +377,7 @@ static ssize_t set_activation_height(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_height) Loading Loading @@ -411,7 +411,7 @@ static ssize_t set_deactivate_slack(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; /* Loading drivers/hid/hid-roccat-arvo.c +3 −3 Original line number Diff line number Diff line Loading @@ -59,7 +59,7 @@ static ssize_t arvo_sysfs_set_mode_key(struct device *dev, unsigned long state; int retval; retval = strict_strtoul(buf, 10, &state); retval = kstrtoul(buf, 10, &state); if (retval) return retval; Loading Loading @@ -107,7 +107,7 @@ static ssize_t arvo_sysfs_set_key_mask(struct device *dev, unsigned long key_mask; int retval; retval = strict_strtoul(buf, 10, &key_mask); retval = kstrtoul(buf, 10, &key_mask); if (retval) return retval; Loading Loading @@ -159,7 +159,7 @@ static ssize_t arvo_sysfs_set_actual_profile(struct device *dev, unsigned long profile; int retval; retval = strict_strtoul(buf, 10, &profile); retval = kstrtoul(buf, 10, &profile); if (retval) return retval; Loading drivers/hid/hid-roccat-isku.c +1 −1 Original line number Diff line number Diff line Loading @@ -82,7 +82,7 @@ static ssize_t isku_sysfs_set_actual_profile(struct device *dev, isku = hid_get_drvdata(dev_get_drvdata(dev)); usb_dev = interface_to_usbdev(to_usb_interface(dev)); retval = strict_strtoul(buf, 10, &profile); retval = kstrtoul(buf, 10, &profile); if (retval) return retval; Loading drivers/hid/hid-roccat-kone.c +2 −2 Original line number Diff line number Diff line Loading @@ -456,7 +456,7 @@ static ssize_t kone_sysfs_set_tcu(struct device *dev, kone = hid_get_drvdata(dev_get_drvdata(dev)); usb_dev = interface_to_usbdev(to_usb_interface(dev)); retval = strict_strtoul(buf, 10, &state); retval = kstrtoul(buf, 10, &state); if (retval) return retval; Loading Loading @@ -545,7 +545,7 @@ static ssize_t kone_sysfs_set_startup_profile(struct device *dev, kone = hid_get_drvdata(dev_get_drvdata(dev)); usb_dev = interface_to_usbdev(to_usb_interface(dev)); retval = strict_strtoul(buf, 10, &new_startup_profile); retval = kstrtoul(buf, 10, &new_startup_profile); if (retval) return retval; Loading Loading
drivers/hid/hid-magicmouse.c +1 −1 Original line number Diff line number Diff line Loading @@ -36,7 +36,7 @@ MODULE_PARM_DESC(emulate_scroll_wheel, "Emulate a scroll wheel"); static unsigned int scroll_speed = 32; static int param_set_scroll_speed(const char *val, struct kernel_param *kp) { unsigned long speed; if (!val || strict_strtoul(val, 0, &speed) || speed > 63) if (!val || kstrtoul(val, 0, &speed) || speed > 63) return -EINVAL; scroll_speed = speed; return 0; Loading
drivers/hid/hid-ntrig.c +6 −6 Original line number Diff line number Diff line Loading @@ -237,7 +237,7 @@ static ssize_t set_min_width(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_width) Loading Loading @@ -272,7 +272,7 @@ static ssize_t set_min_height(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_height) Loading Loading @@ -306,7 +306,7 @@ static ssize_t set_activate_slack(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > 0x7f) Loading Loading @@ -341,7 +341,7 @@ static ssize_t set_activation_width(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_width) Loading Loading @@ -377,7 +377,7 @@ static ssize_t set_activation_height(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; if (val > nd->sensor_physical_height) Loading Loading @@ -411,7 +411,7 @@ static ssize_t set_deactivate_slack(struct device *dev, unsigned long val; if (strict_strtoul(buf, 0, &val)) if (kstrtoul(buf, 0, &val)) return -EINVAL; /* Loading
drivers/hid/hid-roccat-arvo.c +3 −3 Original line number Diff line number Diff line Loading @@ -59,7 +59,7 @@ static ssize_t arvo_sysfs_set_mode_key(struct device *dev, unsigned long state; int retval; retval = strict_strtoul(buf, 10, &state); retval = kstrtoul(buf, 10, &state); if (retval) return retval; Loading Loading @@ -107,7 +107,7 @@ static ssize_t arvo_sysfs_set_key_mask(struct device *dev, unsigned long key_mask; int retval; retval = strict_strtoul(buf, 10, &key_mask); retval = kstrtoul(buf, 10, &key_mask); if (retval) return retval; Loading Loading @@ -159,7 +159,7 @@ static ssize_t arvo_sysfs_set_actual_profile(struct device *dev, unsigned long profile; int retval; retval = strict_strtoul(buf, 10, &profile); retval = kstrtoul(buf, 10, &profile); if (retval) return retval; Loading
drivers/hid/hid-roccat-isku.c +1 −1 Original line number Diff line number Diff line Loading @@ -82,7 +82,7 @@ static ssize_t isku_sysfs_set_actual_profile(struct device *dev, isku = hid_get_drvdata(dev_get_drvdata(dev)); usb_dev = interface_to_usbdev(to_usb_interface(dev)); retval = strict_strtoul(buf, 10, &profile); retval = kstrtoul(buf, 10, &profile); if (retval) return retval; Loading
drivers/hid/hid-roccat-kone.c +2 −2 Original line number Diff line number Diff line Loading @@ -456,7 +456,7 @@ static ssize_t kone_sysfs_set_tcu(struct device *dev, kone = hid_get_drvdata(dev_get_drvdata(dev)); usb_dev = interface_to_usbdev(to_usb_interface(dev)); retval = strict_strtoul(buf, 10, &state); retval = kstrtoul(buf, 10, &state); if (retval) return retval; Loading Loading @@ -545,7 +545,7 @@ static ssize_t kone_sysfs_set_startup_profile(struct device *dev, kone = hid_get_drvdata(dev_get_drvdata(dev)); usb_dev = interface_to_usbdev(to_usb_interface(dev)); retval = strict_strtoul(buf, 10, &new_startup_profile); retval = kstrtoul(buf, 10, &new_startup_profile); if (retval) return retval; Loading