Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

isdn: Fix typo in drivers/isdn

Correct spelling typo in printk within drivers/isdn

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Masanari Iida and committed by
David S. Miller
465b1678 1eb8f7a7

+6 -6
+1 -1
drivers/isdn/hardware/mISDN/hfcpci.c
··· 490 490 (df->data[le16_to_cpu(zp->z1)])) { 491 491 if (dch->debug & DEBUG_HW) 492 492 printk(KERN_DEBUG 493 - "empty_fifo hfcpci paket inv. len " 493 + "empty_fifo hfcpci packet inv. len " 494 494 "%d or crc %d\n", 495 495 rcnt, 496 496 df->data[le16_to_cpu(zp->z1)]);
+1 -1
drivers/isdn/hardware/mISDN/mISDNisar.c
··· 1302 1302 &ch->is->Flags)) 1303 1303 ch->dpath = 1; 1304 1304 else { 1305 - pr_info("modeisar both pathes in use\n"); 1305 + pr_info("modeisar both paths in use\n"); 1306 1306 return -EBUSY; 1307 1307 } 1308 1308 if (bprotocol == ISDN_P_B_HDLC)
+1 -1
drivers/isdn/hisax/callc.c
··· 35 35 /* experimental REJECT after ALERTING for CALLBACK to beat the 4s delay */ 36 36 #define ALERT_REJECT 0 37 37 38 - /* Value to delay the sending of the first B-channel paket after CONNECT 38 + /* Value to delay the sending of the first B-channel packet after CONNECT 39 39 * here is no value given by ITU, but experience shows that 300 ms will 40 40 * work on many networks, if you or your other side is behind local exchanges 41 41 * a greater value may be recommented. If the delay is to short the first paket
+1 -1
drivers/isdn/hisax/hfc_pci.c
··· 354 354 if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) || 355 355 (df->data[zp->z1])) { 356 356 if (cs->debug & L1_DEB_WARN) 357 - debugl1(cs, "empty_fifo hfcpci paket inv. len %d or crc %d", rcnt, df->data[zp->z1]); 357 + debugl1(cs, "empty_fifo hfcpci packet inv. len %d or crc %d", rcnt, df->data[zp->z1]); 358 358 #ifdef ERROR_STATISTIC 359 359 cs->err_rx++; 360 360 #endif
+1 -1
drivers/isdn/hisax/hfc_sx.c
··· 270 270 271 271 if ((count > fifo_size) || (count < 4)) { 272 272 if (cs->debug & L1_DEB_WARN) 273 - debugl1(cs, "hfcsx_read_fifo %d paket inv. len %d ", fifo , count); 273 + debugl1(cs, "hfcsx_read_fifo %d packet inv. len %d ", fifo , count); 274 274 while (count) { 275 275 count--; /* empty fifo */ 276 276 Read_hfc(cs, HFCSX_FIF_DRD);
+1 -1
drivers/isdn/pcbit/layer2.c
··· 508 508 return IRQ_NONE; 509 509 } 510 510 if (dev->interrupt) { 511 - printk(KERN_DEBUG "pcbit: reentering interrupt hander\n"); 511 + printk(KERN_DEBUG "pcbit: reentering interrupt handler\n"); 512 512 return IRQ_HANDLED; 513 513 } 514 514 dev->interrupt = 1;