]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
ALSA: sc6000: fix spelling mistake: "iomaped" -> "iomapped"
authorColin Ian King <colin.king@canonical.com>
Wed, 2 May 2018 13:59:40 +0000 (14:59 +0100)
committerTakashi Iwai <tiwai@suse.de>
Wed, 2 May 2018 14:01:15 +0000 (16:01 +0200)
Trivial fix to spelling mistake in KERN_ERR error messages

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/isa/sc6000.c

index c09d9b914efe0dad0f4f82ff477910258e427b3e..a985e9183be9d4b1c71238152859e17f1910c4f3 100644 (file)
@@ -592,7 +592,7 @@ static int snd_sc6000_probe(struct device *devptr, unsigned int dev)
        *vport = devm_ioport_map(devptr, port[dev], 0x10);
        if (*vport == NULL) {
                snd_printk(KERN_ERR PFX
-                          "I/O port cannot be iomaped.\n");
+                          "I/O port cannot be iomapped.\n");
                err = -EBUSY;
                goto err_unmap1;
        }
@@ -607,7 +607,7 @@ static int snd_sc6000_probe(struct device *devptr, unsigned int dev)
        vmss_port = devm_ioport_map(devptr, mss_port[dev], 4);
        if (!vmss_port) {
                snd_printk(KERN_ERR PFX
-                          "MSS port I/O cannot be iomaped.\n");
+                          "MSS port I/O cannot be iomapped.\n");
                err = -EBUSY;
                goto err_unmap2;
        }