diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-05-02 14:59:40 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-05-02 16:01:15 +0200 |
commit | 6a300dc95e855d60a4c123a4a81becc938f6360a (patch) | |
tree | 96cd547c791771e9bb44b1358906035860958c5c /sound/isa | |
parent | 8e142e9e628975b0dddd05cf1b095331dff6e2de (diff) | |
download | linux-6a300dc95e855d60a4c123a4a81becc938f6360a.tar.bz2 |
ALSA: sc6000: fix spelling mistake: "iomaped" -> "iomapped"
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>
Diffstat (limited to 'sound/isa')
-rw-r--r-- | sound/isa/sc6000.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/isa/sc6000.c b/sound/isa/sc6000.c index c09d9b914efe..a985e9183be9 100644 --- a/sound/isa/sc6000.c +++ b/sound/isa/sc6000.c @@ -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; } |