blob: 13ea3461fb235d5c85ce3a2d84b88f3366141490 (
plain)
1
2
3
4
5
6
7
8
9
10
|
struct scoop_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
};
extern void scoop_backlight_on(int);
extern int scoop_gpio_pin_read(struct scoop_softc *sc, int);
extern void scoop_gpio_pin_write(struct scoop_softc *sc, int, int);
|