Skip to content

Commit

Permalink
mmc: Fix typo in s3cmci.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Masanari Iida authored and Jiri Kosina committed Feb 5, 2012
1 parent 881b999 commit 4aa6ded
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/mmc/host/s3cmci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
}
Expand Down

0 comments on commit 4aa6ded

Please sign in to comment.