Remove public declarations of variables that were forgotten when they were
made static.
This commit is contained in:
parent
cec9a4bf57
commit
c11ba30c9a
@ -218,7 +218,6 @@ enum upd7210_rreg {
|
||||
#define ADR1_EOI (1 << 7) /* End or Identify */
|
||||
|
||||
/* Stuff from software drivers */
|
||||
extern struct cdevsw gpib_l_cdevsw;
|
||||
extern struct cdevsw gpib_ib_cdevsw;
|
||||
|
||||
/* Stuff from upd7210.c */
|
||||
|
@ -36,8 +36,6 @@ struct iicbus_softc {
|
||||
* 0 if no start condition succeeded */
|
||||
};
|
||||
|
||||
extern devclass_t iicbus_devclass;
|
||||
|
||||
extern int iicbus_generic_intr(device_t dev, int event, char *buf);
|
||||
|
||||
#endif
|
||||
|
@ -34,8 +34,6 @@ struct smbus_softc {
|
||||
device_t owner; /* smbus owner device structure */
|
||||
};
|
||||
|
||||
extern devclass_t smbus_devclass;
|
||||
|
||||
extern void smbus_generic_intr(device_t dev, u_char devaddr, char low, char high);
|
||||
|
||||
#endif
|
||||
|
@ -135,7 +135,6 @@ extern int (*union_dircheckp)(struct thread *, struct vnode **,
|
||||
#define UDEBUG_ENABLED 1
|
||||
|
||||
extern struct vop_vector union_vnodeops;
|
||||
extern struct vfsops union_vfsops;
|
||||
extern int uniondebug;
|
||||
|
||||
#endif /* _KERNEL */
|
||||
|
@ -71,7 +71,6 @@ struct pimstat {
|
||||
}
|
||||
|
||||
#ifdef _KERNEL
|
||||
extern struct pimstat pimstat;
|
||||
|
||||
void pim_input(struct mbuf *, int);
|
||||
SYSCTL_DECL(_net_inet_pim);
|
||||
|
@ -52,8 +52,6 @@ struct pim6stat {
|
||||
};
|
||||
|
||||
#if (defined(KERNEL)) || (defined(_KERNEL))
|
||||
extern struct pim6stat pim6stat;
|
||||
|
||||
int pim6_input __P((struct mbuf **, int*, int));
|
||||
#endif /* KERNEL */
|
||||
|
||||
|
@ -99,7 +99,6 @@ struct ithd {
|
||||
|
||||
extern struct ithd *tty_ithd;
|
||||
extern struct ithd *clk_ithd;
|
||||
extern void *net_ih;
|
||||
extern void *softclock_ih;
|
||||
extern void *vm_ih;
|
||||
|
||||
|
@ -818,7 +818,6 @@ extern int lastpid;
|
||||
extern int nprocs, maxproc; /* Current and max number of procs. */
|
||||
extern int maxprocperuid; /* Max procs per uid. */
|
||||
extern u_long ps_arg_cache_limit;
|
||||
extern int sched_quantum; /* Scheduling quantum in ticks. */
|
||||
|
||||
LIST_HEAD(proclist, proc);
|
||||
TAILQ_HEAD(procqueue, proc);
|
||||
|
Loading…
Reference in New Issue
Block a user