Lines Matching refs:gp
82 struct fm801_gp *gp; in fm801_gp_probe() local
86 gp = kzalloc(sizeof(struct fm801_gp), GFP_KERNEL); in fm801_gp_probe()
88 if (!gp || !port) { in fm801_gp_probe()
107 gp->gameport = port; in fm801_gp_probe()
108 gp->res_port = request_region(port->io, 0x10, "FM801 GP"); in fm801_gp_probe()
109 if (!gp->res_port) { in fm801_gp_probe()
116 pci_set_drvdata(pci, gp); in fm801_gp_probe()
127 kfree(gp); in fm801_gp_probe()
133 struct fm801_gp *gp = pci_get_drvdata(pci); in fm801_gp_remove() local
135 gameport_unregister_port(gp->gameport); in fm801_gp_remove()
136 release_resource(gp->res_port); in fm801_gp_remove()
137 kfree(gp); in fm801_gp_remove()