Home
last modified time | relevance | path

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

/openbmc/linux/drivers/accessibility/speakup/
H A 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()
H A Dspeakup_soft.c32 static struct miscdevice synth_device, synthu_device; variable
398 memset(&synth_device, 0, sizeof(synth_device)); in softsynth_probe()
399 synth_device.minor = MISC_DYNAMIC_MINOR; in softsynth_probe()
400 synth_device.name = "softsynth"; in softsynth_probe()
401 synth_device.fops = &softsynth_fops; in softsynth_probe()
402 if (misc_register(&synth_device)) { in softsynth_probe()
412 misc_deregister(&synth_device); in softsynth_probe()
419 synth_device.minor); in softsynth_probe()
427 misc_deregister(&synth_device); in softsynth_release()