Browse Source

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>
Colin Ian King 8 years ago
parent
commit
57907a73e0
2 changed files with 2 additions and 2 deletions
  1. 1 1
      drivers/soc/fsl/qbman/bman.c
  2. 1 1
      drivers/soc/fsl/qbman/qman.c

+ 1 - 1
drivers/soc/fsl/qbman/bman.c

@@ -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);
 	i = bm_in(portal, BM_REG_RCR_PI_CINH) & (BM_RCR_SIZE - 1);
 	if (i != rcr_ptr2idx(rcr->cursor))
 	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);
 	i = bm_in(portal, BM_REG_RCR_CI_CINH) & (BM_RCR_SIZE - 1);
 	if (i != rcr->ci)
 	if (i != rcr->ci)

+ 1 - 1
drivers/soc/fsl/qbman/qman.c

@@ -443,7 +443,7 @@ static inline void qm_eqcr_finish(struct qm_portal *portal)
 
 
 	DPAA_ASSERT(!eqcr->busy);
 	DPAA_ASSERT(!eqcr->busy);
 	if (pi != eqcr_ptr2idx(eqcr->cursor))
 	if (pi != eqcr_ptr2idx(eqcr->cursor))
-		pr_crit("losing uncommited EQCR entries\n");
+		pr_crit("losing uncommitted EQCR entries\n");
 	if (ci != eqcr->ci)
 	if (ci != eqcr->ci)
 		pr_crit("missing existing EQCR completions\n");
 		pr_crit("missing existing EQCR completions\n");
 	if (eqcr->ci != eqcr_ptr2idx(eqcr->cursor))
 	if (eqcr->ci != eqcr_ptr2idx(eqcr->cursor))