diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-09-02 08:45:25 (GMT) |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-09-03 11:08:10 (GMT) |
commit | 0fd67cee29cef1942865bd4375b8a7e5d98343ad (patch) | |
tree | 173c2d61ea7ed568a426544b65571dfb4196ca5d /sound/soc/intel | |
parent | b0fab9c6f636733161b723d1c223f2ce17637ff0 (diff) | |
download | linux-0fd67cee29cef1942865bd4375b8a7e5d98343ad.tar.xz |
ASoC: Intel: sst: fix to spelling mistake: "susupend" -> "suspend"
trivial fix to spelling mistake in dev_err message and replace "cant"
with "can't"
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel')
-rw-r--r-- | sound/soc/intel/atom/sst/sst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/atom/sst/sst.c b/sound/soc/intel/atom/sst/sst.c index 498b5f7..9b6e273 100644 --- a/sound/soc/intel/atom/sst/sst.c +++ b/sound/soc/intel/atom/sst/sst.c @@ -442,7 +442,7 @@ static int intel_sst_suspend(struct device *dev) struct stream_info *stream = &ctx->streams[i]; if (stream->status == STREAM_RUNNING) { - dev_err(dev, "stream %d is running, cant susupend, abort\n", i); + dev_err(dev, "stream %d is running, can't suspend, abort\n", i); return -EBUSY; } } |