mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 14:39:37 +00:00
Fixed a bogus include path.
Removed a bogus include. Added prototypes.
This commit is contained in:
parent
c5d1682b14
commit
6b88228fc4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12361
@ -20,7 +20,7 @@
|
||||
|
||||
#include "cx.h"
|
||||
#if NCX > 0
|
||||
#include <bpfilter.h>
|
||||
#include "bpfilter.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
@ -44,7 +44,6 @@
|
||||
# if __FreeBSD__ < 2
|
||||
# include <machine/pio.h>
|
||||
# else
|
||||
# include <machine/cpufunc.h>
|
||||
# include <sys/devconf.h>
|
||||
# endif
|
||||
# define init_func_t void(*)(int)
|
||||
@ -79,6 +78,14 @@ struct cxsoftc {
|
||||
#include <machine/cronyx.h>
|
||||
#include <i386/isa/cxreg.h>
|
||||
|
||||
extern int cxprobe __P((struct isa_device *id));
|
||||
extern int cxattach __P((struct isa_device *id));
|
||||
extern void cxput __P((cx_chan_t *c, char b));
|
||||
extern void cxsend __P((cx_chan_t *c));
|
||||
extern void cxrinth __P((cx_chan_t *c));
|
||||
extern int cxtinth __P((cx_chan_t *c));
|
||||
extern void cxswitch __P((cx_chan_t *c, cx_soft_opt_t new));
|
||||
|
||||
#ifdef DEBUG
|
||||
# define print(s) printf s
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user