Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 54840
b: refs/heads/master
c: f3851e7
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Slaby authored and Linus Torvalds committed May 8, 2007
1 parent 70b94c7 commit 79a1792
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 23 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: 0809e2671d804f6caa8b3bd5e4de4b52f649cf73
refs/heads/master: f3851e73ecdd070bc379677ed7aad958446f26e7
37 changes: 15 additions & 22 deletions trunk/drivers/char/cyclades.c
Original file line number Diff line number Diff line change
Expand Up @@ -4834,6 +4834,7 @@ static int __init cy_detect_isa(void)
cy_card[j].bus_index = 0;
cy_card[j].first_line = cy_next_channel;
cy_card[j].num_chips = cy_isa_nchan / 4;
cy_init_card(&cy_card[j], j);
nboard++;

/* print message */
Expand Down Expand Up @@ -4931,6 +4932,7 @@ static int __devinit cy_init_Ze(unsigned long cy_pci_phys0,
cy_card[j].first_line = cy_next_channel;
cy_card[j].num_chips = -1;
cy_card[j].pdev = pdev;
cy_init_card(&cy_card[j], j);
pci_set_drvdata(pdev, &cy_card[j]);

/* print message */
Expand Down Expand Up @@ -5080,6 +5082,7 @@ static int __devinit cy_pci_probe(struct pci_dev *pdev,
cy_card[j].first_line = cy_next_channel;
cy_card[j].num_chips = cy_pci_nchan / 4;
cy_card[j].pdev = pdev;
cy_init_card(&cy_card[j], j);
pci_set_drvdata(pdev, &cy_card[j]);

/* enable interrupts in the PCI interface */
Expand Down Expand Up @@ -5263,6 +5266,7 @@ static int __devinit cy_pci_probe(struct pci_dev *pdev,
cy_card[j].first_line = cy_next_channel;
cy_card[j].num_chips = -1;
cy_card[j].pdev = pdev;
cy_init_card(&cy_card[j], j);
pci_set_drvdata(pdev, &cy_card[j]);

/* print message */
Expand Down Expand Up @@ -5327,6 +5331,7 @@ static void __devexit cy_pci_release(struct pci_dev *pdev)
{
#ifdef CONFIG_PCI
struct cyclades_card *cinfo = pci_get_drvdata(pdev);
unsigned int i;

pci_iounmap(pdev, cinfo->base_addr);
if (cinfo->ctl_addr)
Expand All @@ -5340,6 +5345,10 @@ static void __devexit cy_pci_release(struct pci_dev *pdev)
pci_release_regions(pdev);

cinfo->base_addr = NULL;
for (i = cinfo->first_line; i < cinfo->first_line + cinfo->nports; i++){
cy_port[i].line = -1;
cy_port[i].magic = -1;
}
#endif
}

Expand Down Expand Up @@ -5483,6 +5492,12 @@ static int __init cy_init(void)
cy_card[i].base_addr = NULL;
}

/* invalidate remaining cy_port structures */
for (i = 0; i < NR_PORTS; i++) {
cy_port[i].line = -1;
cy_port[i].magic = -1;
}

/* the code below is responsible to find the boards. Each different
type of board has its own detection routine. If a board is found,
the next cy_card structure available is set by the detection
Expand All @@ -5498,29 +5513,7 @@ static int __init cy_init(void)

cy_nboard = cy_isa_nboard + cy_pci_nboard;

/* invalidate remaining cy_card structures */
for (i = 0; i < NR_CARDS; i++) {
if (cy_card[i].base_addr == 0) {
cy_card[i].first_line = -1;
cy_card[i].ctl_addr = NULL;
cy_card[i].irq = 0;
cy_card[i].bus_index = 0;
cy_card[i].first_line = 0;
cy_card[i].num_chips = 0;
}
}
/* invalidate remaining cy_port structures */
for (i = cy_next_channel; i < NR_PORTS; i++) {
cy_port[i].line = -1;
cy_port[i].magic = -1;
}

/* initialize per-port data structures for each valid board found */
for (i = 0; i < cy_nboard; i++)
cy_init_card(&cy_card[i], i);

return 0;

} /* cy_init */

static void __exit cy_cleanup_module(void)
Expand Down

0 comments on commit 79a1792

Please sign in to comment.