aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2015-02-24 09:11:26 -0500
committerJiri Kosina <jkosina@suse.cz>2015-03-06 17:04:40 -0500
commitf42cf8d6a3ec934551ac0f20f4654dccb11fa30d (patch)
treeacbb50d874edfafa5baa82befa00dff45580fdf1 /drivers/mmc
parent637473cf006fe4cd85aed0fb69b6c917d868ada2 (diff)
treewide: Fix typo in printk messages
This patch fix spelling typo in printk messages. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/mmc')
-rw-r--r--drivers/mmc/core/mmc.c4
-rw-r--r--drivers/mmc/core/sd.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c
index a301a78a2bd1..b212239750af 100644
--- a/drivers/mmc/core/mmc.c
+++ b/drivers/mmc/core/mmc.c
@@ -1816,7 +1816,7 @@ static int mmc_runtime_suspend(struct mmc_host *host)
1816 1816
1817 err = _mmc_suspend(host, true); 1817 err = _mmc_suspend(host, true);
1818 if (err) 1818 if (err)
1819 pr_err("%s: error %d doing aggessive suspend\n", 1819 pr_err("%s: error %d doing aggressive suspend\n",
1820 mmc_hostname(host), err); 1820 mmc_hostname(host), err);
1821 1821
1822 return err; 1822 return err;
@@ -1834,7 +1834,7 @@ static int mmc_runtime_resume(struct mmc_host *host)
1834 1834
1835 err = _mmc_resume(host); 1835 err = _mmc_resume(host);
1836 if (err) 1836 if (err)
1837 pr_err("%s: error %d doing aggessive resume\n", 1837 pr_err("%s: error %d doing aggressive resume\n",
1838 mmc_hostname(host), err); 1838 mmc_hostname(host), err);
1839 1839
1840 return 0; 1840 return 0;
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
index d90a6de7901d..c2cddfd99c7c 100644
--- a/drivers/mmc/core/sd.c
+++ b/drivers/mmc/core/sd.c
@@ -1156,7 +1156,7 @@ static int mmc_sd_runtime_suspend(struct mmc_host *host)
1156 1156
1157 err = _mmc_sd_suspend(host); 1157 err = _mmc_sd_suspend(host);
1158 if (err) 1158 if (err)
1159 pr_err("%s: error %d doing aggessive suspend\n", 1159 pr_err("%s: error %d doing aggressive suspend\n",
1160 mmc_hostname(host), err); 1160 mmc_hostname(host), err);
1161 1161
1162 return err; 1162 return err;
@@ -1174,7 +1174,7 @@ static int mmc_sd_runtime_resume(struct mmc_host *host)
1174 1174
1175 err = _mmc_sd_resume(host); 1175 err = _mmc_sd_resume(host);
1176 if (err) 1176 if (err)
1177 pr_err("%s: error %d doing aggessive resume\n", 1177 pr_err("%s: error %d doing aggressive resume\n",
1178 mmc_hostname(host), err); 1178 mmc_hostname(host), err);
1179 1179
1180 return 0; 1180 return 0;