Home
last modified time | relevance | path

Searched refs:synth_device (Results 1 – 2 of 2) sorted by relevance

/Linux-v5.15/drivers/accessibility/speakup/
Ddevsynth.c65 static struct miscdevice synth_device = { variable
76 if (misc_register(&synth_device)) { in speakup_register_devsynth()
80 MISC_MAJOR, synth_device.minor); in speakup_register_devsynth()
90 misc_deregister(&synth_device); in speakup_unregister_devsynth()
Dspeakup_soft.c31 static struct miscdevice synth_device, synthu_device; variable
386 memset(&synth_device, 0, sizeof(synth_device)); in softsynth_probe()
387 synth_device.minor = MISC_DYNAMIC_MINOR; in softsynth_probe()
388 synth_device.name = "softsynth"; in softsynth_probe()
389 synth_device.fops = &softsynth_fops; in softsynth_probe()
390 if (misc_register(&synth_device)) { in softsynth_probe()
406 synth_device.minor); in softsynth_probe()
414 misc_deregister(&synth_device); in softsynth_release()