Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 39662
b: refs/heads/master
c: b435fdc
h: refs/heads/master
v: v3
  • Loading branch information
Jeff Garzik authored and Dmitry Torokhov committed Oct 12, 2006
1 parent 616071a commit a394004
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 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: 23de1510e2468ea349354889097e018d4e8770c5
refs/heads/master: b435fdcda126db42343b8055d04a0a27c229717b
22 changes: 15 additions & 7 deletions trunk/drivers/input/gameport/fm801-gp.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,19 @@ static int __devinit fm801_gp_probe(struct pci_dev *pci, const struct pci_device
{
struct fm801_gp *gp;
struct gameport *port;
int error;

gp = kzalloc(sizeof(struct fm801_gp), GFP_KERNEL);
port = gameport_allocate_port();
if (!gp || !port) {
printk(KERN_ERR "fm801-gp: Memory allocation failed\n");
kfree(gp);
gameport_free_port(port);
return -ENOMEM;
error = -ENOMEM;
goto err_out_free;
}

pci_enable_device(pci);
error = pci_enable_device(pci);
if (error)
goto err_out_free;

port->open = fm801_gp_open;
#ifdef HAVE_COOKED
Expand All @@ -108,9 +110,8 @@ static int __devinit fm801_gp_probe(struct pci_dev *pci, const struct pci_device
if (!gp->res_port) {
printk(KERN_DEBUG "fm801-gp: unable to grab region 0x%x-0x%x\n",
port->io, port->io + 0x0f);
gameport_free_port(port);
kfree(gp);
return -EBUSY;
error = -EBUSY;
goto err_out_disable_dev;
}

pci_set_drvdata(pci, gp);
Expand All @@ -119,6 +120,13 @@ static int __devinit fm801_gp_probe(struct pci_dev *pci, const struct pci_device
gameport_register_port(port);

return 0;

err_out_disable_dev:
pci_disable_device(pci);
err_out_free:
gameport_free_port(port);
kfree(gp);
return error;
}

static void __devexit fm801_gp_remove(struct pci_dev *pci)
Expand Down

0 comments on commit a394004

Please sign in to comment.