Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43724
b: refs/heads/master
c: aeaccfe
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed Dec 8, 2006
1 parent 395375d commit a0e7a03
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 7 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: 6b2c9457bb377bf843f0a3ca2f4eb2ef69c67985
refs/heads/master: aeaccfe42510d2c009a2c36452d220a5f4a0363e
33 changes: 27 additions & 6 deletions trunk/drivers/char/stallion.c
Original file line number Diff line number Diff line change
Expand Up @@ -2348,7 +2348,7 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
struct stlbrd *brdp;
unsigned int brdtype = ent->driver_data;
unsigned int i, brdtype = ent->driver_data;
int brdnr, retval = -ENODEV;

if ((pdev->class >> 8) == PCI_CLASS_STORAGE_IDE)
Expand Down Expand Up @@ -2409,6 +2409,10 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev,

pci_set_drvdata(pdev, brdp);

for (i = 0; i < brdp->nrports; i++)
tty_register_device(stl_serial,
brdp->brdnr * STL_MAXPORTS + i, &pdev->dev);

return 0;
err_null:
stl_brds[brdp->brdnr] = NULL;
Expand All @@ -2421,6 +2425,7 @@ static int __devinit stl_pciprobe(struct pci_dev *pdev,
static void __devexit stl_pciremove(struct pci_dev *pdev)
{
struct stlbrd *brdp = pci_get_drvdata(pdev);
unsigned int i;

free_irq(brdp->irq, brdp);

Expand All @@ -2430,6 +2435,10 @@ static void __devexit stl_pciremove(struct pci_dev *pdev)
if (brdp->iosize2 > 0)
release_region(brdp->ioaddr2, brdp->iosize2);

for (i = 0; i < brdp->nrports; i++)
tty_unregister_device(stl_serial,
brdp->brdnr * STL_MAXPORTS + i);

stl_brds[brdp->brdnr] = NULL;
kfree(brdp);
}
Expand Down Expand Up @@ -4693,7 +4702,7 @@ static int __init stallion_module_init(void)
{
struct stlbrd *brdp;
struct stlconf conf;
unsigned int i;
unsigned int i, j;
int retval;

printk(KERN_INFO "%s: version %s\n", stl_drvtitle, stl_drvversion);
Expand All @@ -4720,6 +4729,9 @@ static int __init stallion_module_init(void)
if (stl_brdinit(brdp))
kfree(brdp);
else {
for (j = 0; j < brdp->nrports; j++)
tty_register_device(stl_serial,
brdp->brdnr * STL_MAXPORTS + j, NULL);
stl_brds[brdp->brdnr] = brdp;
stl_nrbrds = i + 1;
}
Expand Down Expand Up @@ -4761,7 +4773,7 @@ static int __init stallion_module_init(void)
stl_serial->type = TTY_DRIVER_TYPE_SERIAL;
stl_serial->subtype = SERIAL_TYPE_NORMAL;
stl_serial->init_termios = stl_deftermios;
stl_serial->flags = TTY_DRIVER_REAL_RAW;
stl_serial->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
tty_set_operations(stl_serial, &stl_ops);

retval = tty_register_driver(stl_serial);
Expand All @@ -4787,7 +4799,9 @@ static int __init stallion_module_init(void)

static void __exit stallion_module_exit(void)
{
int i;
struct stlbrd *brdp;
unsigned int i, j;
int retval;

pr_debug("cleanup_module()\n");

Expand All @@ -4800,14 +4814,21 @@ static void __exit stallion_module_exit(void)
* a hangup on every open port - to try to flush out any processes
* hanging onto ports.
*/
for (i = 0; i < stl_nrbrds; i++) {
if ((brdp = stl_brds[i]) == NULL || (brdp->state & STL_PROBED))
continue;
for (j = 0; j < brdp->nrports; j++)
tty_unregister_device(stl_serial,
brdp->brdnr * STL_MAXPORTS + j);
}
tty_unregister_driver(stl_serial);
put_tty_driver(stl_serial);

for (i = 0; i < 4; i++)
class_device_destroy(stallion_class, MKDEV(STL_SIOMEMMAJOR, i));
if ((i = unregister_chrdev(STL_SIOMEMMAJOR, "staliomem")))
if ((retval = unregister_chrdev(STL_SIOMEMMAJOR, "staliomem")))
printk("STALLION: failed to un-register serial memory device, "
"errno=%d\n", -i);
"errno=%d\n", -retval);
class_destroy(stallion_class);

pci_unregister_driver(&stl_pcidriver);
Expand Down

0 comments on commit a0e7a03

Please sign in to comment.