- Remove the __FBSDID and put the $FreeBSD$ tag in the comment above,
so that including this file more than once works. - Fix some style bugs while I'm here.
This commit is contained in:
parent
c0e591618f
commit
a17ab98005
@ -6,16 +6,15 @@
|
||||
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
|
||||
* ----------------------------------------------------------------------------
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _DEV_LED_H
|
||||
#define _DEV_LED_H
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__FBSDID("$FreeBSD$");
|
||||
|
||||
typedef void led_t(void *, int);
|
||||
dev_t led_create(led_t *func, void *priv, char const *name);
|
||||
void led_destroy(dev_t dev);
|
||||
|
||||
#endif /* _DEV_LED_H */
|
||||
dev_t led_create(led_t *, void *, char const *);
|
||||
void led_destroy(dev_t);
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user