Lines Matching refs:gp
83 struct fm801_gp *gp; in fm801_gp_probe() local
87 gp = kzalloc(sizeof(struct fm801_gp), GFP_KERNEL); in fm801_gp_probe()
89 if (!gp || !port) { in fm801_gp_probe()
108 gp->gameport = port; in fm801_gp_probe()
109 gp->res_port = request_region(port->io, 0x10, "FM801 GP"); in fm801_gp_probe()
110 if (!gp->res_port) { in fm801_gp_probe()
117 pci_set_drvdata(pci, gp); in fm801_gp_probe()
128 kfree(gp); in fm801_gp_probe()
134 struct fm801_gp *gp = pci_get_drvdata(pci); in fm801_gp_remove() local
136 gameport_unregister_port(gp->gameport); in fm801_gp_remove()
137 release_resource(gp->res_port); in fm801_gp_remove()
138 kfree(gp); in fm801_gp_remove()