mmc: Fix typo in s3cmci.c
authorMasanari Iida <standby24x7@gmail.com>
Sun, 29 Jan 2012 12:58:57 +0000 (21:58 +0900)
committerJiri Kosina <jkosina@suse.cz>
Sun, 5 Feb 2012 16:14:47 +0000 (17:14 +0100)
Correct typo "resouce" to "resource" in
drivers/mmc/host/s3cmci.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/mmc/host/s3cmci.c

index 1bcfd6d..c3622a6 100644 (file)
@@ -1606,7 +1606,7 @@ static int __devinit s3cmci_probe(struct platform_device *pdev)
        host->mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        if (!host->mem) {
                dev_err(&pdev->dev,
-                       "failed to get io memory region resouce.\n");
+                       "failed to get io memory region resource.\n");
 
                ret = -ENOENT;
                goto probe_free_gpio;
@@ -1630,7 +1630,7 @@ static int __devinit s3cmci_probe(struct platform_device *pdev)
 
        host->irq = platform_get_irq(pdev, 0);
        if (host->irq == 0) {
-               dev_err(&pdev->dev, "failed to get interrupt resouce.\n");
+               dev_err(&pdev->dev, "failed to get interrupt resource.\n");
                ret = -EINVAL;
                goto probe_iounmap;
        }