mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 09:14:19 +08:00
Input: pwm-beeper - use input_set_capability()
Instead of manipulating capability bits directly, let's use input_set_capability() API. Reviewed-by: Thierry Reding <thierry.reding@gmail.com> Tested-by: David Lechner <david@lechnology.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:
parent
bcf4b0460b
commit
48a55d7de7
@ -131,8 +131,8 @@ static int pwm_beeper_probe(struct platform_device *pdev)
|
|||||||
beeper->input->id.product = 0x0001;
|
beeper->input->id.product = 0x0001;
|
||||||
beeper->input->id.version = 0x0100;
|
beeper->input->id.version = 0x0100;
|
||||||
|
|
||||||
beeper->input->evbit[0] = BIT(EV_SND);
|
input_set_capability(beeper->input, EV_SND, SND_TONE);
|
||||||
beeper->input->sndbit[0] = BIT(SND_TONE) | BIT(SND_BELL);
|
input_set_capability(beeper->input, EV_SND, SND_BELL);
|
||||||
|
|
||||||
beeper->input->event = pwm_beeper_event;
|
beeper->input->event = pwm_beeper_event;
|
||||||
beeper->input->close = pwm_beeper_close;
|
beeper->input->close = pwm_beeper_close;
|
||||||
|
Loading…
Reference in New Issue
Block a user