xref: /netbsd/sys/dev/ic/spicvar.h (revision bf9ec67e)
1 struct spic_softc {
2 	struct device sc_dev;
3 
4 	bus_space_tag_t	sc_iot;
5 	bus_space_handle_t sc_ioh;
6 
7 	struct callout sc_poll;
8 
9 	int sc_buttons;
10 	char sc_enabled;
11 
12 	struct device *sc_wsmousedev;
13 };
14 
15 void spic_attach(struct spic_softc *);
16 
17 int spic_intr(void *);
18