Lines Matching refs:new
880 unsigned long new; in test_dev_config_update_uint_sync() local
883 ret = kstrtoul(buf, 10, &new); in test_dev_config_update_uint_sync()
887 if (new > UINT_MAX) in test_dev_config_update_uint_sync()
893 *(unsigned int *)config = new; in test_dev_config_update_uint_sync()
918 unsigned long new; in test_dev_config_update_uint_range() local
920 ret = kstrtoul(buf, 10, &new); in test_dev_config_update_uint_range()
924 if (new < min || new > max) in test_dev_config_update_uint_range()
928 *config = new; in test_dev_config_update_uint_range()
940 long new; in test_dev_config_update_int() local
942 ret = kstrtol(buf, 10, &new); in test_dev_config_update_int()
946 if (new < INT_MIN || new > INT_MAX) in test_dev_config_update_int()
950 *config = new; in test_dev_config_update_int()