Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 744627e9 authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina
Browse files

treewide: fix printk typo in multiple drivers



Correct spelling typo in multiple drivers.

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 8166ea07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1598,7 +1598,7 @@ static int __init run_all_tests(void)
{
	int ret = 0;

	pr_info("Begining kprobe tests...\n");
	pr_info("Beginning kprobe tests...\n");

#ifndef CONFIG_THUMB2_KERNEL

+1 −1
Original line number Diff line number Diff line
@@ -191,7 +191,7 @@ static irqreturn_t l2_ecc_err(int irq, void *dev_id)
{
	int status;

	printk(KERN_ERR "L2 ecc error happend\n");
	printk(KERN_ERR "L2 ecc error happened\n");
	status = bfin_read32(L2CTL0_STAT);
	if (status & 0x1)
		printk(KERN_ERR "Core channel error type:0x%x, addr:0x%x\n",
+1 −1
Original line number Diff line number Diff line
@@ -490,7 +490,7 @@ receive_dmsg(struct hfc_pci *hc)
		    (df->data[le16_to_cpu(zp->z1)])) {
			if (dch->debug & DEBUG_HW)
				printk(KERN_DEBUG
				       "empty_fifo hfcpci paket inv. len "
				       "empty_fifo hfcpci packet inv. len "
				       "%d or crc %d\n",
				       rcnt,
				       df->data[le16_to_cpu(zp->z1)]);
+1 −1
Original line number Diff line number Diff line
@@ -354,7 +354,7 @@ receive_dmsg(struct IsdnCardState *cs)
		if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) ||
		    (df->data[zp->z1])) {
			if (cs->debug & L1_DEB_WARN)
				debugl1(cs, "empty_fifo hfcpci paket inv. len %d or crc %d", rcnt, df->data[zp->z1]);
				debugl1(cs, "empty_fifo hfcpci packet inv. len %d or crc %d", rcnt, df->data[zp->z1]);
#ifdef ERROR_STATISTIC
			cs->err_rx++;
#endif
+1 −1
Original line number Diff line number Diff line
@@ -270,7 +270,7 @@ read_fifo(struct IsdnCardState *cs, u_char fifo, int trans_max)

		if ((count > fifo_size) || (count < 4)) {
			if (cs->debug & L1_DEB_WARN)
				debugl1(cs, "hfcsx_read_fifo %d paket inv. len %d ", fifo , count);
				debugl1(cs, "hfcsx_read_fifo %d packet inv. len %d ", fifo , count);
			while (count) {
				count--; /* empty fifo */
				Read_hfc(cs, HFCSX_FIF_DRD);
Loading