Lines Matching refs:value
33 int (*event)(struct input_dev *dev, unsigned int type, unsigned int code, int value);
66 static int bbc_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
77 case SND_BELL: if (value) value = 1000;
82 if (value > 20 && value < 32767)
83 count = 1193182 / value;
104 static int grover_spkr_event(struct input_dev *dev, unsigned int type, unsigned int code, int value)
115 case SND_BELL: if (value) value = 1000;
120 if (value > 20 && value < 32767)
121 count = 1193182 / value;