diff options
author | Colin Ian King <colin.king@canonical.com> | 2016-11-12 12:01:30 -0500 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2016-11-22 02:29:48 -0500 |
commit | 57907a73e0ff7ccd561d0202acaabe5537ed359e (patch) | |
tree | 3f4e3ed5773e2ffc8c0a7e6598e2578ff49a9ec4 /drivers/soc | |
parent | 8ba1baabde85bfc27ab486422dc8fca3092bb9df (diff) |
soc/fsl: fix spelling mistakes in critical error messages
Trivial fix to spelling mistake "uncommited" to "uncommitted" in
critical error messages.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Scott Wood <oss@buserror.net>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/fsl/qbman/bman.c | 2 | ||||
-rw-r--r-- | drivers/soc/fsl/qbman/qman.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/soc/fsl/qbman/bman.c b/drivers/soc/fsl/qbman/bman.c index ffa48fdbb1a9..48b7eb698689 100644 --- a/drivers/soc/fsl/qbman/bman.c +++ b/drivers/soc/fsl/qbman/bman.c | |||
@@ -391,7 +391,7 @@ static void bm_rcr_finish(struct bm_portal *portal) | |||
391 | 391 | ||
392 | i = bm_in(portal, BM_REG_RCR_PI_CINH) & (BM_RCR_SIZE - 1); | 392 | i = bm_in(portal, BM_REG_RCR_PI_CINH) & (BM_RCR_SIZE - 1); |
393 | if (i != rcr_ptr2idx(rcr->cursor)) | 393 | if (i != rcr_ptr2idx(rcr->cursor)) |
394 | pr_crit("losing uncommited RCR entries\n"); | 394 | pr_crit("losing uncommitted RCR entries\n"); |
395 | 395 | ||
396 | i = bm_in(portal, BM_REG_RCR_CI_CINH) & (BM_RCR_SIZE - 1); | 396 | i = bm_in(portal, BM_REG_RCR_CI_CINH) & (BM_RCR_SIZE - 1); |
397 | if (i != rcr->ci) | 397 | if (i != rcr->ci) |
diff --git a/drivers/soc/fsl/qbman/qman.c b/drivers/soc/fsl/qbman/qman.c index 119054bc922b..deeacd5d123e 100644 --- a/drivers/soc/fsl/qbman/qman.c +++ b/drivers/soc/fsl/qbman/qman.c | |||
@@ -443,7 +443,7 @@ static inline void qm_eqcr_finish(struct qm_portal *portal) | |||
443 | 443 | ||
444 | DPAA_ASSERT(!eqcr->busy); | 444 | DPAA_ASSERT(!eqcr->busy); |
445 | if (pi != eqcr_ptr2idx(eqcr->cursor)) | 445 | if (pi != eqcr_ptr2idx(eqcr->cursor)) |
446 | pr_crit("losing uncommited EQCR entries\n"); | 446 | pr_crit("losing uncommitted EQCR entries\n"); |
447 | if (ci != eqcr->ci) | 447 | if (ci != eqcr->ci) |
448 | pr_crit("missing existing EQCR completions\n"); | 448 | pr_crit("missing existing EQCR completions\n"); |
449 | if (eqcr->ci != eqcr_ptr2idx(eqcr->cursor)) | 449 | if (eqcr->ci != eqcr_ptr2idx(eqcr->cursor)) |