freebsd-dev/sys/dev/stg/tmc18c30.h
Andriy Gapon c0e55e3b65 strict kobj sigs: fix assortment of device_detach and device_shutdown impls
with common issue of having void return type instead of int

Reviewed by:	imp, current@
Approved by:	jhb (mentor)
2009-06-11 17:14:28 +00:00

13 lines
235 B
C

/*
* $FreeBSD$
*/
extern devclass_t stg_devclass;
int stg_alloc_resource (device_t);
void stg_release_resource (device_t);
int stg_probe (device_t);
int stg_attach (device_t);
int stg_detach (device_t);
void stg_intr (void *);