ARM: mach-imx: iomux-imx31: fix spelling mistake in error message
authorColin Ian King <colin.king@canonical.com>
Sat, 28 Nov 2015 16:27:34 +0000 (16:27 +0000)
committerShawn Guo <shawnguo@kernel.org>
Wed, 2 Dec 2015 07:54:08 +0000 (15:54 +0800)
Minor issue, fix spelling mistake, nonexistant -> nonexistent

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
arch/arm/mach-imx/iomux-imx31.c

index 6dd22ca..0b5ba4b 100644 (file)
@@ -100,7 +100,7 @@ int mxc_iomux_alloc_pin(unsigned int pin, const char *label)
        unsigned pad = pin & IOMUX_PADNUM_MASK;
 
        if (pad >= (PIN_MAX + 1)) {
-               printk(KERN_ERR "mxc_iomux: Attempt to request nonexistant pin %u for \"%s\"\n",
+               printk(KERN_ERR "mxc_iomux: Attempt to request nonexistent pin %u for \"%s\"\n",
                        pad, label ? label : "?");
                return -EINVAL;
        }