Lines Matching refs:max_effects
27 if (effect_id < 0 || effect_id >= ff->max_effects || in check_effect_access()
126 for (id = 0; id < ff->max_effects; id++) in input_ff_upload()
130 if (id >= ff->max_effects) { in input_ff_upload()
245 for (i = 0; i < ff->max_effects; i++) in input_ff_flush()
305 int input_ff_create(struct input_dev *dev, unsigned int max_effects) in input_ff_create() argument
311 if (!max_effects) { in input_ff_create()
316 if (max_effects > FF_MAX_EFFECTS) { in input_ff_create()
322 max_effects * sizeof(struct file *); in input_ff_create()
323 if (ff_dev_size < max_effects) /* overflow */ in input_ff_create()
330 ff->effects = kcalloc(max_effects, sizeof(struct ff_effect), in input_ff_create()
337 ff->max_effects = max_effects; in input_ff_create()