1121941Sphk/*-
2121941Sphk * ----------------------------------------------------------------------------
3121941Sphk * "THE BEER-WARE LICENSE" (Revision 42):
4121941Sphk * <phk@FreeBSD.org> wrote this file.  As long as you retain this notice you
5121941Sphk * can do whatever you want with this stuff. If we meet some day, and you think
6121941Sphk * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
7121941Sphk * ----------------------------------------------------------------------------
8121941Sphk *
9129085Smux * $FreeBSD$
10121941Sphk */
11121941Sphk
12121941Sphk#ifndef _DEV_LED_H
13121941Sphk#define _DEV_LED_H
14121941Sphk
15121941Sphktypedef	void led_t(void *, int);
16121941Sphk
17168974Sphkstruct cdev *led_create_state(led_t *, void *, char const *, int);
18130585Sphkstruct cdev *led_create(led_t *, void *, char const *);
19130585Sphkvoid	led_destroy(struct cdev *);
20129085Smux
21219951Smavint	led_set(char const *, char const *);
22219951Smav
23129085Smux#endif
24