Lines Matching refs:new
883 unsigned long new; in test_dev_config_update_uint_sync() local
886 ret = kstrtoul(buf, 10, &new); in test_dev_config_update_uint_sync()
890 if (new > UINT_MAX) in test_dev_config_update_uint_sync()
896 *(unsigned int *)config = new; in test_dev_config_update_uint_sync()
921 unsigned long new; in test_dev_config_update_uint_range() local
923 ret = kstrtoul(buf, 10, &new); in test_dev_config_update_uint_range()
927 if (new < min || new > max) in test_dev_config_update_uint_range()
931 *config = new; in test_dev_config_update_uint_range()
943 long new; in test_dev_config_update_int() local
945 ret = kstrtol(buf, 10, &new); in test_dev_config_update_int()
949 if (new < INT_MIN || new > INT_MAX) in test_dev_config_update_int()
953 *config = new; in test_dev_config_update_int()