mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
with common issue of having void return type instead of int Reviewed by: imp, current@ Approved by: jhb (mentor)
12 lines
235 B
C
12 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 *);
|