aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/staging/speakup
diff options
context:
space:
mode:
authorZhenzhong Duan <zhenzhong.duan@gmail.com>2020-03-05 15:21:51 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-03-10 10:51:20 +0100
commit8080b0f53724325f6233a400310433eb6c4e7049 (patch)
tree85930811c367ff5036628ce7232975508f27db55 /drivers/staging/speakup
parentstaging: vt6656: struct vnt_rcb remove unused in_use. (diff)
downloadwireguard-linux-8080b0f53724325f6233a400310433eb6c4e7049.tar.xz
wireguard-linux-8080b0f53724325f6233a400310433eb6c4e7049.zip
staging: speakup: Fix a typo error print for softsynthu device
When softsynthu device fails the register, "/dev/softsynthu" should be printed instead of "/dev/softsynth". Signed-off-by: Zhenzhong Duan <zhenzhong.duan@gmail.com> Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Cc: William Hubbs <w.d.hubbs@gmail.com> Cc: Chris Brannon <chris@the-brannons.com> Cc: Kirk Reiser <kirk@reisers.ca> Link: https://lore.kernel.org/r/20200305072151.403-1-zhenzhong.duan@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/speakup')
-rw-r--r--drivers/staging/speakup/speakup_soft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/speakup/speakup_soft.c b/drivers/staging/speakup/speakup_soft.c
index 9d85a3a1af4c..28cedaec6d8a 100644
--- a/drivers/staging/speakup/speakup_soft.c
+++ b/drivers/staging/speakup/speakup_soft.c
@@ -388,7 +388,7 @@ static int softsynth_probe(struct spk_synth *synth)
synthu_device.name = "softsynthu";
synthu_device.fops = &softsynthu_fops;
if (misc_register(&synthu_device)) {
- pr_warn("Couldn't initialize miscdevice /dev/softsynth.\n");
+ pr_warn("Couldn't initialize miscdevice /dev/softsynthu.\n");
return -ENODEV;
}