Lines Matching refs:max_effects
24 if (effect_id < 0 || effect_id >= ff->max_effects || in check_effect_access()
123 for (id = 0; id < ff->max_effects; id++) in input_ff_upload()
127 if (id >= ff->max_effects) { in input_ff_upload()
242 for (i = 0; i < ff->max_effects; i++) in input_ff_flush()
302 int input_ff_create(struct input_dev *dev, unsigned int max_effects) in input_ff_create() argument
308 if (!max_effects) { in input_ff_create()
313 if (max_effects > FF_MAX_EFFECTS) { in input_ff_create()
319 max_effects * sizeof(struct file *); in input_ff_create()
320 if (ff_dev_size < max_effects) /* overflow */ in input_ff_create()
327 ff->effects = kcalloc(max_effects, sizeof(struct ff_effect), in input_ff_create()
334 ff->max_effects = max_effects; in input_ff_create()