Commit 3adae6e3 authored by François Romieu's avatar François Romieu Committed by Jeff Garzik

[PATCH] dscc4: removal of unneeded variable

Removal of unneeded variable and more spaces for my eyes.
Signed-off-by: default avatarFrancois Romieu <romieu@fr.zoreil.com>
Signed-off-by: default avatarJeff Garzik <jgarzik@pobox.com>
parent 6505b121
...@@ -691,7 +691,7 @@ static void dscc4_free1(struct pci_dev *pdev) ...@@ -691,7 +691,7 @@ static void dscc4_free1(struct pci_dev *pdev)
root = ppriv->root; root = ppriv->root;
for (i = 0; i < dev_per_card; i++) for (i = 0; i < dev_per_card; i++)
unregister_hdlc_device(dscc4_to_dev(&root[i])); unregister_hdlc_device(dscc4_to_dev(root + i));
pci_set_drvdata(pdev, NULL); pci_set_drvdata(pdev, NULL);
...@@ -706,7 +706,6 @@ static int __devinit dscc4_init_one(struct pci_dev *pdev, ...@@ -706,7 +706,6 @@ static int __devinit dscc4_init_one(struct pci_dev *pdev,
{ {
struct dscc4_pci_priv *priv; struct dscc4_pci_priv *priv;
struct dscc4_dev_priv *dpriv; struct dscc4_dev_priv *dpriv;
static int cards_found = 0;
void __iomem *ioaddr; void __iomem *ioaddr;
int i, rc; int i, rc;
...@@ -812,8 +811,6 @@ static int __devinit dscc4_init_one(struct pci_dev *pdev, ...@@ -812,8 +811,6 @@ static int __devinit dscc4_init_one(struct pci_dev *pdev,
writel(0xff200001, ioaddr + GCMDR); writel(0xff200001, ioaddr + GCMDR);
cards_found++;
rc = 0; rc = 0;
out: out:
return rc; return rc;
...@@ -966,7 +963,7 @@ static int dscc4_found1(struct pci_dev *pdev, void __iomem *ioaddr) ...@@ -966,7 +963,7 @@ static int dscc4_found1(struct pci_dev *pdev, void __iomem *ioaddr)
err_unregister: err_unregister:
while (i-- > 0) { while (i-- > 0) {
dscc4_release_ring(root + i); dscc4_release_ring(root + i);
unregister_hdlc_device(dscc4_to_dev(&root[i])); unregister_hdlc_device(dscc4_to_dev(root + i));
} }
kfree(ppriv); kfree(ppriv);
i = dev_per_card; i = dev_per_card;
......
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