Commit 9d247f29 authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] parport: keep track of parport_sunbpp ports

	parport_sunbpp switched to keeping track of the ports it had
created; in module_exit it uses the private list instead of messing
with parport_enumerate().  Added check for sbus_ioremap() failure in
port initialization.
parent 8a5f10d9
...@@ -286,39 +286,49 @@ static struct parport_operations parport_sunbpp_ops = ...@@ -286,39 +286,49 @@ static struct parport_operations parport_sunbpp_ops =
.owner = THIS_MODULE, .owner = THIS_MODULE,
}; };
typedef struct {
struct list_head list;
struct parport *port;
} Node;
/* no locks, everything's serialized */
static LIST_HEAD(port_list);
static int __init init_one_port(struct sbus_dev *sdev) static int __init init_one_port(struct sbus_dev *sdev)
{ {
struct parport *p; struct parport *p;
/* at least in theory there may be a "we don't dma" case */ /* at least in theory there may be a "we don't dma" case */
struct parport_operations *ops; struct parport_operations *ops;
unsigned long base; unsigned long base;
int irq, dma, err, size; int irq, dma, err = 0, size;
struct bpp_regs *regs; struct bpp_regs *regs;
unsigned char value_tcr; unsigned char value_tcr;
Node *node;
dprintk((KERN_DEBUG "init_one_port(%p): ranges, alloc_io, ", sdev)); dprintk((KERN_DEBUG "init_one_port(%p): ranges, alloc_io, ", sdev));
node = kmalloc(sizeof(Node), GFP_KERNEL);
if (!node)
goto out0;
irq = sdev->irqs[0]; irq = sdev->irqs[0];
base = sbus_ioremap(&sdev->resource[0], 0, base = sbus_ioremap(&sdev->resource[0], 0,
sdev->reg_addrs[0].reg_size, sdev->reg_addrs[0].reg_size,
"sunbpp"); "sunbpp");
if (!base)
goto out1;
size = sdev->reg_addrs[0].reg_size; size = sdev->reg_addrs[0].reg_size;
dma = PARPORT_DMA_NONE; dma = PARPORT_DMA_NONE;
dprintk(("alloc(ppops), ")); dprintk(("alloc(ppops), "));
ops = kmalloc (sizeof (struct parport_operations), GFP_KERNEL); ops = kmalloc (sizeof (struct parport_operations), GFP_KERNEL);
if (!ops) { if (!ops)
sbus_iounmap(base, size); goto out2;
return 0;
}
memcpy (ops, &parport_sunbpp_ops, sizeof (struct parport_operations)); memcpy (ops, &parport_sunbpp_ops, sizeof (struct parport_operations));
dprintk(("register_port\n")); dprintk(("register_port\n"));
if (!(p = parport_register_port(base, irq, dma, ops))) { if (!(p = parport_register_port(base, irq, dma, ops)))
kfree(ops); goto out3;
sbus_iounmap(base, size);
return 0;
}
p->size = size; p->size = size;
...@@ -327,14 +337,10 @@ static int __init init_one_port(struct sbus_dev *sdev) ...@@ -327,14 +337,10 @@ static int __init init_one_port(struct sbus_dev *sdev)
if ((err = request_irq(p->irq, parport_sunbpp_interrupt, if ((err = request_irq(p->irq, parport_sunbpp_interrupt,
SA_SHIRQ, p->name, p)) != 0) { SA_SHIRQ, p->name, p)) != 0) {
dprintk(("ERROR %d\n", err)); dprintk(("ERROR %d\n", err));
parport_put_port(p); goto out4;
kfree(ops); }
sbus_iounmap(base, size);
return err;
} else {
dprintk(("OK\n")); dprintk(("OK\n"));
parport_sunbpp_enable_irq(p); parport_sunbpp_enable_irq(p);
}
regs = (struct bpp_regs *)p->base; regs = (struct bpp_regs *)p->base;
dprintk((KERN_DEBUG "forward\n")); dprintk((KERN_DEBUG "forward\n"));
...@@ -343,9 +349,22 @@ static int __init init_one_port(struct sbus_dev *sdev) ...@@ -343,9 +349,22 @@ static int __init init_one_port(struct sbus_dev *sdev)
sbus_writeb(value_tcr, &regs->p_tcr); sbus_writeb(value_tcr, &regs->p_tcr);
printk(KERN_INFO "%s: sunbpp at 0x%lx\n", p->name, p->base); printk(KERN_INFO "%s: sunbpp at 0x%lx\n", p->name, p->base);
node->port = p;
list_add(&node->list, &port_list);
parport_announce_port (p); parport_announce_port (p);
return 1; return 1;
out4:
parport_put_port(p);
out3:
kfree(ops);
out2:
sbus_iounmap(base, size);
out1:
kfree(node);
out0:
return err;
} }
static int __init parport_sunbpp_init(void) static int __init parport_sunbpp_init(void)
...@@ -365,12 +384,9 @@ static int __init parport_sunbpp_init(void) ...@@ -365,12 +384,9 @@ static int __init parport_sunbpp_init(void)
static void __exit parport_sunbpp_exit(void) static void __exit parport_sunbpp_exit(void)
{ {
struct parport *p = parport_enumerate(); while (!list_empty(port_list)) {
Node *node = list_entry(port_list.next, Node, list);
while (p) { struct parport *p = node->port;
struct parport *next = p->next;
if (1/*p->modes & PARPORT_MODE_PCSPP*/) {
struct parport_operations *ops = p->ops; struct parport_operations *ops = p->ops;
parport_remove_port(p); parport_remove_port(p);
...@@ -381,8 +397,8 @@ static void __exit parport_sunbpp_exit(void) ...@@ -381,8 +397,8 @@ static void __exit parport_sunbpp_exit(void)
sbus_iounmap(p->base, p->size); sbus_iounmap(p->base, p->size);
parport_put_port(p); parport_put_port(p);
kfree (ops); kfree (ops);
} list_del(&node->list);
p = next; kfree (node);
} }
} }
......
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