Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43666
b: refs/heads/master
c: 171d3a8
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed Dec 8, 2006
1 parent bc481b3 commit 487a2a7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 214efebba86260a0fb3ef84b9f5707b58cbc227b
refs/heads/master: 171d3a86788eef4f751b88265bac393c3232dbdd
49 changes: 24 additions & 25 deletions trunk/drivers/char/mxser_new.c
Original file line number Diff line number Diff line change
Expand Up @@ -2563,6 +2563,22 @@ static const struct tty_operations mxser_ops = {
* The MOXA Smartio/Industio serial driver boot-time initialization code!
*/

static void mxser_release_res(struct mxser_board *brd, unsigned int irq)
{
struct pci_dev *pdev = brd->pdev;

if (irq)
free_irq(brd->irq, brd);
if (pdev != NULL) { /* PCI */
pci_release_region(pdev, 2);
pci_release_region(pdev, 3);
pci_dev_put(pdev);
} else {
release_region(brd->ports[0].ioaddr, 8 * brd->nports);
release_region(brd->vector, 1);
}
}

static int __devinit mxser_initbrd(struct mxser_board *brd)
{
struct mxser_port *info;
Expand Down Expand Up @@ -2613,6 +2629,8 @@ static int __devinit mxser_initbrd(struct mxser_board *brd)
printk(KERN_ERR "Board %s: Request irq failed, IRQ (%d) may "
"conflict with another device.\n",
mxser_brdname[brd->board_type - 1], brd->irq);
/* We hold resources, we need to release them. */
mxser_release_res(brd, 0);
return retval;
}
return 0;
Expand Down Expand Up @@ -2963,14 +2981,9 @@ static int __init mxser_module_init(void)
" driver !\n");
put_tty_driver(mxvar_sdriver);

for (i = 0; i < MXSER_BOARDS; i++) {
if (mxser_boards[i].board_type == -1)
continue;
else {
free_irq(mxser_boards[i].irq, &mxser_boards[i]);
/* todo: release io, vector */
}
}
for (i = 0; i < MXSER_BOARDS; i++)
if (mxser_boards[i].board_type != -1)
mxser_release_res(&mxser_boards[i], 1);
return retval;
}

Expand All @@ -2991,24 +3004,10 @@ static void __exit mxser_module_exit(void)
else
printk(KERN_ERR "Couldn't unregister MOXA Smartio/Industio family serial driver\n");

for (i = 0; i < MXSER_BOARDS; i++) {
struct pci_dev *pdev;
for (i = 0; i < MXSER_BOARDS; i++)
if (mxser_boards[i].board_type != -1)
mxser_release_res(&mxser_boards[i], 1);

if (mxser_boards[i].board_type == -1)
continue;
else {
pdev = mxser_boards[i].pdev;
free_irq(mxser_boards[i].irq, &mxser_boards[i]);
if (pdev != NULL) { /* PCI */
pci_release_region(pdev, 2);
pci_release_region(pdev, 3);
pci_dev_put(pdev);
} else {
release_region(mxser_boards[i].ports[0].ioaddr, 8 * mxser_boards[i].nports);
release_region(mxser_boards[i].vector, 1);
}
}
}
pr_debug("Done.\n");
}

Expand Down

0 comments on commit 487a2a7

Please sign in to comment.