Lines Matching refs:ct82c710_port
48 static struct serio *ct82c710_port;
59 return serio_interrupt(ct82c710_port, inb(CT82C710_DATA), 0);
164 ct82c710_port = kzalloc(sizeof(struct serio), GFP_KERNEL);
165 if (!ct82c710_port)
168 ct82c710_port->id.type = SERIO_8042;
169 ct82c710_port->dev.parent = &dev->dev;
170 ct82c710_port->open = ct82c710_open;
171 ct82c710_port->close = ct82c710_close;
172 ct82c710_port->write = ct82c710_write;
173 strlcpy(ct82c710_port->name, "C&T 82c710 mouse port",
174 sizeof(ct82c710_port->name));
175 snprintf(ct82c710_port->phys, sizeof(ct82c710_port->phys),
178 serio_register_port(ct82c710_port);
188 serio_unregister_port(ct82c710_port);