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>
This commit is contained in:

committed by
David S. Miller

parent
1eb8f7a7da
commit
465b1678eb
@@ -490,7 +490,7 @@ receive_dmsg(struct hfc_pci *hc)
|
|||||||
(df->data[le16_to_cpu(zp->z1)])) {
|
(df->data[le16_to_cpu(zp->z1)])) {
|
||||||
if (dch->debug & DEBUG_HW)
|
if (dch->debug & DEBUG_HW)
|
||||||
printk(KERN_DEBUG
|
printk(KERN_DEBUG
|
||||||
"empty_fifo hfcpci paket inv. len "
|
"empty_fifo hfcpci packet inv. len "
|
||||||
"%d or crc %d\n",
|
"%d or crc %d\n",
|
||||||
rcnt,
|
rcnt,
|
||||||
df->data[le16_to_cpu(zp->z1)]);
|
df->data[le16_to_cpu(zp->z1)]);
|
||||||
|
@@ -1302,7 +1302,7 @@ modeisar(struct isar_ch *ch, u32 bprotocol)
|
|||||||
&ch->is->Flags))
|
&ch->is->Flags))
|
||||||
ch->dpath = 1;
|
ch->dpath = 1;
|
||||||
else {
|
else {
|
||||||
pr_info("modeisar both pathes in use\n");
|
pr_info("modeisar both paths in use\n");
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
}
|
}
|
||||||
if (bprotocol == ISDN_P_B_HDLC)
|
if (bprotocol == ISDN_P_B_HDLC)
|
||||||
|
@@ -35,7 +35,7 @@ static int chancount;
|
|||||||
/* experimental REJECT after ALERTING for CALLBACK to beat the 4s delay */
|
/* experimental REJECT after ALERTING for CALLBACK to beat the 4s delay */
|
||||||
#define ALERT_REJECT 0
|
#define ALERT_REJECT 0
|
||||||
|
|
||||||
/* Value to delay the sending of the first B-channel paket after CONNECT
|
/* Value to delay the sending of the first B-channel packet after CONNECT
|
||||||
* here is no value given by ITU, but experience shows that 300 ms will
|
* here is no value given by ITU, but experience shows that 300 ms will
|
||||||
* work on many networks, if you or your other side is behind local exchanges
|
* work on many networks, if you or your other side is behind local exchanges
|
||||||
* a greater value may be recommented. If the delay is to short the first paket
|
* a greater value may be recommented. If the delay is to short the first paket
|
||||||
|
@@ -354,7 +354,7 @@ receive_dmsg(struct IsdnCardState *cs)
|
|||||||
if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) ||
|
if ((rcnt > MAX_DFRAME_LEN + 3) || (rcnt < 4) ||
|
||||||
(df->data[zp->z1])) {
|
(df->data[zp->z1])) {
|
||||||
if (cs->debug & L1_DEB_WARN)
|
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
|
#ifdef ERROR_STATISTIC
|
||||||
cs->err_rx++;
|
cs->err_rx++;
|
||||||
#endif
|
#endif
|
||||||
|
@@ -270,7 +270,7 @@ read_fifo(struct IsdnCardState *cs, u_char fifo, int trans_max)
|
|||||||
|
|
||||||
if ((count > fifo_size) || (count < 4)) {
|
if ((count > fifo_size) || (count < 4)) {
|
||||||
if (cs->debug & L1_DEB_WARN)
|
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) {
|
while (count) {
|
||||||
count--; /* empty fifo */
|
count--; /* empty fifo */
|
||||||
Read_hfc(cs, HFCSX_FIF_DRD);
|
Read_hfc(cs, HFCSX_FIF_DRD);
|
||||||
|
@@ -508,7 +508,7 @@ pcbit_irq_handler(int interrupt, void *devptr)
|
|||||||
return IRQ_NONE;
|
return IRQ_NONE;
|
||||||
}
|
}
|
||||||
if (dev->interrupt) {
|
if (dev->interrupt) {
|
||||||
printk(KERN_DEBUG "pcbit: reentering interrupt hander\n");
|
printk(KERN_DEBUG "pcbit: reentering interrupt handler\n");
|
||||||
return IRQ_HANDLED;
|
return IRQ_HANDLED;
|
||||||
}
|
}
|
||||||
dev->interrupt = 1;
|
dev->interrupt = 1;
|
||||||
|
Reference in New Issue
Block a user