soc/fsl: fix spelling mistakes in critical error messages
authorColin Ian King <colin.king@canonical.com>
Sat, 12 Nov 2016 17:01:30 +0000 (17:01 +0000)
committerScott Wood <oss@buserror.net>
Tue, 22 Nov 2016 07:29:48 +0000 (01:29 -0600)
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>
drivers/soc/fsl/qbman/bman.c
drivers/soc/fsl/qbman/qman.c

index ffa48fdbb1a9a0cd91df52f2e01bcbc2e42d61ad..48b7eb69868995b7fad00be742aed2d305592588 100644 (file)
@@ -391,7 +391,7 @@ static void bm_rcr_finish(struct bm_portal *portal)
 
        i = bm_in(portal, BM_REG_RCR_PI_CINH) & (BM_RCR_SIZE - 1);
        if (i != rcr_ptr2idx(rcr->cursor))
-               pr_crit("losing uncommited RCR entries\n");
+               pr_crit("losing uncommitted RCR entries\n");
 
        i = bm_in(portal, BM_REG_RCR_CI_CINH) & (BM_RCR_SIZE - 1);
        if (i != rcr->ci)
index 119054bc922bfc0032d0db52476e4b53985e0d5c..deeacd5d123ee81ce537d076203e2aede6e14218 100644 (file)
@@ -443,7 +443,7 @@ static inline void qm_eqcr_finish(struct qm_portal *portal)
 
        DPAA_ASSERT(!eqcr->busy);
        if (pi != eqcr_ptr2idx(eqcr->cursor))
-               pr_crit("losing uncommited EQCR entries\n");
+               pr_crit("losing uncommitted EQCR entries\n");
        if (ci != eqcr->ci)
                pr_crit("missing existing EQCR completions\n");
        if (eqcr->ci != eqcr_ptr2idx(eqcr->cursor))