summaryrefslogtreecommitdiff
path: root/sys/dev/ic/spicvar.h
blob: bc2377b7e6550e79ccf82f4aa93241e7ff4b407a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 *);