d32b5e84cc
This driver works on my SRX77, but probably little else. It makes the jog dial appear as a wsmouse.
18 lines
258 B
C
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 *);
|