Home
last modified time | relevance | path

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

/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
379 memset(&synth_device, 0, sizeof(synth_device)); in softsynth_probe()
380 synth_device.minor = MISC_DYNAMIC_MINOR; in softsynth_probe()
381 synth_device.name = "softsynth"; in softsynth_probe()
382 synth_device.fops = &softsynth_fops; in softsynth_probe()
383 if (misc_register(&synth_device)) { in softsynth_probe()
399 synth_device.minor); in softsynth_probe()
407 misc_deregister(&synth_device); in softsynth_release()