diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-11-09 00:02:49 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-09 17:10:16 -0500 |
commit | 465b1678ebdf5dbd9bc0502358ae472343351c2c (patch) | |
tree | 6dc55a4a2670981aaf1bb23d16cdbf4e5c0af558 /drivers/isdn | |
parent | 1eb8f7a7da6d3b36fcc339d7bbddbf8315a5c1dd (diff) |
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>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/hardware/mISDN/hfcpci.c | 2 | ||||
-rw-r--r-- | drivers/isdn/hardware/mISDN/mISDNisar.c | 2 | ||||
-rw-r--r-- | drivers/isdn/hisax/callc.c | 2 | ||||
-rw-r--r-- | drivers/isdn/hisax/hfc_pci.c | 2 | ||||
-rw-r--r-- | drivers/isdn/hisax/hfc_sx.c | 2 | ||||
-rw-r--r-- | drivers/isdn/pcbit/layer2.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/drivers/isdn/hardware/mISDN/hfcpci.c b/drivers/isdn/hardware/mISDN/hfcpci.c index 81363ffa5357..6e99d73563b8 100644 --- a/drivers/isdn/hardware/mISDN/hfcpci.c +++ b/drivers/isdn/hardware/mISDN/hfcpci.c | |||
@@ -490,7 +490,7 @@ receive_dmsg(struct hfc_pci *hc) | |||
490 | (df->data[le16_to_cpu(zp->z1)])) { | 490 | (df->data[le16_to_cpu(zp->z1)])) { |
491 | if (dch->debug & DEBUG_HW) | 491 | if (dch->debug & DEBUG_HW) |
492 | printk(KERN_DEBUG | 492 | printk(KERN_DEBUG |
493 | "empty_fifo hfcpci paket inv. len " | 493 | "empty_fifo hfcpci packet inv. len " |
494 | "%d or crc %d\n", | 494 | "%d or crc %d\n", |
495 | rcnt, | 495 | rcnt, |
496 | df->data[le16_to_cpu(zp->z1)]); | 496 | df->data[le16_to_cpu(zp->z1)]); |
diff --git a/drivers/isdn/hardware/mISDN/mISDNisar.c b/drivers/isdn/hardware/mISDN/mISDNisar.c index 182ecf0626c2..feafa91c2ed9 100644 --- a/drivers/isdn/hardware/mISDN/mISDNisar.c +++ b/drivers/isdn/hardware/mISDN/mISDNisar.c | |||
@@ -1302,7 +1302,7 @@ modeisar(struct isar_ch *ch, u32 bprotocol) | |||
1302 | &ch->is->Flags)) | 1302 | &ch->is->Flags)) |
1303 | ch->dpath = 1; | 1303 | ch->dpath = 1; |
1304 | else { | 1304 | else { |
1305 | pr_info("modeisar both pathes in use\n"); | 1305 | pr_info("modeisar both paths in use\n"); |
1306 | return -EBUSY; | 1306 | return -EBUSY; |
1307 | } | 1307 | } |
1308 | if (bprotocol == ISDN_P_B_HDLC) | 1308 | if (bprotocol == ISDN_P_B_HDLC) |
diff --git a/drivers/isdn/hisax/callc.c b/drivers/isdn/hisax/callc.c index a47637be0cc5..ddec47a911a0 100644 --- a/drivers/isdn/hisax/callc.c +++ b/drivers/isdn/hisax/callc.c | |||
@@ -35,7 +35,7 @@ static int chancount; | |||
35 | /* experimental REJECT after ALERTING for CALLBACK to beat the 4s delay */ | 35 | /* experimental REJECT after ALERTING for CALLBACK to beat the 4s delay */ |
36 | #define ALERT_REJECT 0 | 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 | * here is no value given by ITU, but experience shows that 300 ms will | 39 | * here is no value given by ITU, but experience shows that 300 ms will |
40 | * work on many networks, if you or your other side is behind local exchanges | 40 | * work on many networks, if you or your other side is behind local exchanges |
41 | * a greater value may be recommented. If the delay is to short the first paket | 41 | * a greater value may be recommented. If the delay is to short the first paket |
diff --git a/drivers/isdn/hisax/hfc_pci.c b/drivers/isdn/hisax/hfc_pci.c index 334fa90bed8e..f60d4be58941 100644 --- a/drivers/isdn/hisax/hfc_pci.c +++ b/drivers/isdn/hisax/hfc_pci.c | |||
@@ -354,7 +354,7 @@ receive_dmsg(struct IsdnCardState *cs) | |||
354 | if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) || | 354 | if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) || |
355 | (df->data[zp->z1])) { | 355 | (df->data[zp->z1])) { |
356 | if (cs->debug & L1_DEB_WARN) | 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 | #ifdef ERROR_STATISTIC | 358 | #ifdef ERROR_STATISTIC |
359 | cs->err_rx++; | 359 | cs->err_rx++; |
360 | #endif | 360 | #endif |
diff --git a/drivers/isdn/hisax/hfc_sx.c b/drivers/isdn/hisax/hfc_sx.c index 4db846be4369..4ec279ce052f 100644 --- a/drivers/isdn/hisax/hfc_sx.c +++ b/drivers/isdn/hisax/hfc_sx.c | |||
@@ -270,7 +270,7 @@ read_fifo(struct IsdnCardState *cs, u_char fifo, int trans_max) | |||
270 | 270 | ||
271 | if ((count > fifo_size) || (count < 4)) { | 271 | if ((count > fifo_size) || (count < 4)) { |
272 | if (cs->debug & L1_DEB_WARN) | 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 | while (count) { | 274 | while (count) { |
275 | count--; /* empty fifo */ | 275 | count--; /* empty fifo */ |
276 | Read_hfc(cs, HFCSX_FIF_DRD); | 276 | Read_hfc(cs, HFCSX_FIF_DRD); |
diff --git a/drivers/isdn/pcbit/layer2.c b/drivers/isdn/pcbit/layer2.c index a18e639b40d7..42ecfef80132 100644 --- a/drivers/isdn/pcbit/layer2.c +++ b/drivers/isdn/pcbit/layer2.c | |||
@@ -508,7 +508,7 @@ pcbit_irq_handler(int interrupt, void *devptr) | |||
508 | return IRQ_NONE; | 508 | return IRQ_NONE; |
509 | } | 509 | } |
510 | if (dev->interrupt) { | 510 | if (dev->interrupt) { |
511 | printk(KERN_DEBUG "pcbit: reentering interrupt hander\n"); | 511 | printk(KERN_DEBUG "pcbit: reentering interrupt handler\n"); |
512 | return IRQ_HANDLED; | 512 | return IRQ_HANDLED; |
513 | } | 513 | } |
514 | dev->interrupt = 1; | 514 | dev->interrupt = 1; |