Commit 6f90989c authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] some isdn invalid/illegal fixups

(Steven Cole)
parent 64d0f437
...@@ -1596,7 +1596,7 @@ static int capidrv_command(isdn_ctrl * c, capidrv_contr * card) ...@@ -1596,7 +1596,7 @@ static int capidrv_command(isdn_ctrl * c, capidrv_contr * card)
rc = FVteln2capi20(bchan->num, AdditionalInfo); rc = FVteln2capi20(bchan->num, AdditionalInfo);
isleasedline = (rc == 0); isleasedline = (rc == 0);
if (rc < 0) if (rc < 0)
printk(KERN_ERR "capidrv-%d: WARNING: illegal leased linedefinition \"%s\"\n", card->contrnr, bchan->num); printk(KERN_ERR "capidrv-%d: WARNING: invalid leased linedefinition \"%s\"\n", card->contrnr, bchan->num);
if (isleasedline) { if (isleasedline) {
calling[0] = 0; calling[0] = 0;
......
...@@ -90,7 +90,7 @@ eicon_isa_find_card(int Mem, int Irq, char * Id) ...@@ -90,7 +90,7 @@ eicon_isa_find_card(int Mem, int Irq, char * Id)
if ((Mem < 0x0c0000) || if ((Mem < 0x0c0000) ||
(Mem > 0x0fc000) || (Mem > 0x0fc000) ||
(Mem & 0xfff)) { (Mem & 0xfff)) {
printk(KERN_WARNING "eicon_isa: illegal membase 0x%x for %s\n", printk(KERN_WARNING "eicon_isa: invalid membase 0x%x for %s\n",
Mem, Id); Mem, Id);
return -1; return -1;
} }
...@@ -326,7 +326,7 @@ eicon_isa_load(eicon_isa_card *card, eicon_isa_codebuf *cb) { ...@@ -326,7 +326,7 @@ eicon_isa_load(eicon_isa_card *card, eicon_isa_codebuf *cb) {
/* Check for valid IRQ */ /* Check for valid IRQ */
if ((card->irq < 0) || (card->irq > 15) || if ((card->irq < 0) || (card->irq > 15) ||
(!((1 << card->irq) & eicon_isa_valid_irq[card->type & 0x0f]))) { (!((1 << card->irq) & eicon_isa_valid_irq[card->type & 0x0f]))) {
printk(KERN_WARNING "eicon_isa_load: illegal irq: %d\n", card->irq); printk(KERN_WARNING "eicon_isa_load: invalid irq: %d\n", card->irq);
eicon_isa_release_shmem(card); eicon_isa_release_shmem(card);
kfree(code); kfree(code);
return -EINVAL; return -EINVAL;
......
...@@ -78,7 +78,7 @@ static int __init b1isa_probe(struct pci_dev *pdev) ...@@ -78,7 +78,7 @@ static int __init b1isa_probe(struct pci_dev *pdev)
if ( card->port != 0x150 && card->port != 0x250 if ( card->port != 0x150 && card->port != 0x250
&& card->port != 0x300 && card->port != 0x340) { && card->port != 0x300 && card->port != 0x340) {
printk(KERN_WARNING "b1isa: illegal port 0x%x.\n", card->port); printk(KERN_WARNING "b1isa: invalid port 0x%x.\n", card->port);
retval = -EINVAL; retval = -EINVAL;
goto err_free; goto err_free;
} }
......
...@@ -370,7 +370,7 @@ static int __init t1isa_probe(struct pci_dev *pdev, int cardnr) ...@@ -370,7 +370,7 @@ static int __init t1isa_probe(struct pci_dev *pdev, int cardnr)
sprintf(card->name, "t1isa-%x", card->port); sprintf(card->name, "t1isa-%x", card->port);
if (!(((card->port & 0x7) == 0) && ((card->port & 0x30) != 0x30))) { if (!(((card->port & 0x7) == 0) && ((card->port & 0x30) != 0x30))) {
printk(KERN_WARNING "t1isa: illegal port 0x%x.\n", card->port); printk(KERN_WARNING "t1isa: invalid port 0x%x.\n", card->port);
retval = -EINVAL; retval = -EINVAL;
goto err_free; goto err_free;
} }
......
...@@ -4487,7 +4487,7 @@ void control_rc(PLCI * plci, byte req, byte rc, byte ch, byte global_req, byte ...@@ -4487,7 +4487,7 @@ void control_rc(PLCI * plci, byte req, byte rc, byte ch, byte global_req, byte
if(rc==WRONG_IE) if(rc==WRONG_IE)
{ {
Info = 0x2007; /* Illegal message parameter coding */ Info = 0x2007; /* Illegal message parameter coding */
dbug(1,dprintf("MWI_REQ illegal parameter")); dbug(1,dprintf("MWI_REQ invalid parameter"));
} }
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment