NetBSD/sys/dev/ic/spicvar.h
augustss d32b5e84cc Add a driver for the Sony SPIC that handles jog dials etc.
This driver works on my SRX77, but probably little else.
It makes the jog dial appear as a wsmouse.
2002-04-22 12:42:11 +00:00

18 lines
258 B
C

struct spic_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
struct callout sc_poll;
int sc_buttons;
char sc_enabled;
struct device *sc_wsmousedev;
};
void spic_attach(struct spic_softc *);
int spic_intr(void *);