canonicalize includes. cleanup. missing copyrights.
This commit is contained in:
parent
b4b437e1c3
commit
f7f69f9b04
@ -44,46 +44,46 @@
|
||||
* with VAXen, SUNs, and others that handle and benefit from them.
|
||||
* This reasoning is dubious.
|
||||
*/
|
||||
#include "sys/param.h"
|
||||
#include "sys/systm.h"
|
||||
#include "sys/mbuf.h"
|
||||
#include "sys/buf.h"
|
||||
#include "sys/protosw.h"
|
||||
#include "sys/socket.h"
|
||||
#include "sys/syslog.h"
|
||||
#include "sys/ioctl.h"
|
||||
#include "sys/errno.h"
|
||||
#include "sys/device.h"
|
||||
#include <sys/param.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/mbuf.h>
|
||||
#include <sys/buf.h>
|
||||
#include <sys/protosw.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/syslog.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <sys/errno.h>
|
||||
#include <sys/device.h>
|
||||
|
||||
#include "net/if.h"
|
||||
#include "net/netisr.h"
|
||||
#include "net/route.h"
|
||||
#include <net/if.h>
|
||||
#include <net/netisr.h>
|
||||
#include <net/route.h>
|
||||
|
||||
#ifdef INET
|
||||
#include "netinet/in.h"
|
||||
#include "netinet/in_systm.h"
|
||||
#include "netinet/in_var.h"
|
||||
#include "netinet/ip.h"
|
||||
#include "netinet/if_ether.h"
|
||||
#include <netinet/in.h>
|
||||
#include <netinet/in_systm.h>
|
||||
#include <netinet/in_var.h>
|
||||
#include <netinet/ip.h>
|
||||
#include <netinet/if_ether.h>
|
||||
#endif
|
||||
|
||||
#ifdef NS
|
||||
#include "netns/ns.h"
|
||||
#include "netns/ns_if.h"
|
||||
#include <netns/ns.h>
|
||||
#include <netns/ns_if.h>
|
||||
#endif
|
||||
|
||||
#ifdef RMP
|
||||
#include "netrmp/rmp.h"
|
||||
#include "netrmp/rmp_var.h"
|
||||
#include <netrmp/rmp.h>
|
||||
#include <netrmp/rmp_var.h>
|
||||
#endif
|
||||
|
||||
#include "machine/autoconf.h"
|
||||
#include <machine/autoconf.h>
|
||||
|
||||
#include "if_lereg.h"
|
||||
|
||||
#if NBPFILTER > 0
|
||||
#include "../net/bpf.h"
|
||||
#include "../net/bpfdesc.h"
|
||||
#include <net/bpf.h>
|
||||
#include <net/bpfdesc.h>
|
||||
#endif
|
||||
|
||||
#include "if_le.h"
|
||||
@ -91,8 +91,8 @@
|
||||
|
||||
int ledebug = 0; /* console error messages */
|
||||
|
||||
int leintr(), leioctl(), ether_output();
|
||||
void lestart(), leinit();
|
||||
int leintr(), leioctl(), ether_output(), lestart();
|
||||
void leinit();
|
||||
struct mbuf *leget();
|
||||
extern struct ifnet loif;
|
||||
|
||||
@ -295,7 +295,7 @@ void leinit(unit)
|
||||
* off of the interface queue, and copy it to the interface
|
||||
* before starting the output.
|
||||
*/
|
||||
void lestart(ifp)
|
||||
int lestart(ifp)
|
||||
struct ifnet *ifp;
|
||||
{
|
||||
register struct le_softc *le = lecd.cd_devs[ifp->if_unit];
|
||||
@ -304,10 +304,10 @@ void lestart(ifp)
|
||||
int len;
|
||||
|
||||
if ((le->sc_if.if_flags & IFF_RUNNING) == 0)
|
||||
return;
|
||||
return 0;
|
||||
IF_DEQUEUE(&le->sc_if.if_snd, m);
|
||||
if (m == 0)
|
||||
return;
|
||||
return 0;
|
||||
len = leput(le->sc_r2->ler2_tbuf[0], m);
|
||||
#if NBPFILTER > 0
|
||||
/*
|
||||
@ -322,6 +322,7 @@ void lestart(ifp)
|
||||
tmd->tmd2 = -len;
|
||||
tmd->tmd1_bits = LE_OWN | LE_STP | LE_ENP;
|
||||
le->sc_if.if_flags |= IFF_OACTIVE;
|
||||
return 0;
|
||||
}
|
||||
|
||||
leintr(unit)
|
||||
@ -776,7 +777,7 @@ leioctl(ifp, cmd, data)
|
||||
(ifp->if_flags & IFF_RUNNING)) {
|
||||
le->sc_iflags = ifp->if_flags;
|
||||
lereset(ifp->if_unit);
|
||||
lestart(ifp);
|
||||
(void) lestart(ifp);
|
||||
}
|
||||
break;
|
||||
|
||||
|
@ -1,9 +1,42 @@
|
||||
#include "sys/systm.h"
|
||||
#include "sys/device.h"
|
||||
/*
|
||||
* Copyright (c) 1993 Adam Glass
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Adam Glass.
|
||||
* 4. The name of the Author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY Adam Glass ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL Adam Glass BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Header: /cvsroot/src/sys/arch/sun3/dev/Attic/obctl.c,v 1.2 1994/03/01 08:07:14 glass Exp $
|
||||
*/
|
||||
|
||||
#include "machine/autoconf.h"
|
||||
#include "machine/obctl.h"
|
||||
#include "machine/param.h"
|
||||
#include <sys/systm.h>
|
||||
#include <sys/device.h>
|
||||
|
||||
#include <machine/autoconf.h>
|
||||
#include <machine/obctl.h>
|
||||
#include <machine/param.h>
|
||||
|
||||
extern void obctlattach __P((struct device *, struct device *, void *));
|
||||
|
||||
|
@ -1,12 +1,44 @@
|
||||
#include "sys/systm.h"
|
||||
#include "sys/device.h"
|
||||
/*
|
||||
* Copyright (c) 1993 Adam Glass
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Adam Glass.
|
||||
* 4. The name of the Author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY Adam Glass ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL Adam Glass BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Header: /cvsroot/src/sys/arch/sun3/dev/Attic/obio.c,v 1.6 1994/03/01 08:07:15 glass Exp $
|
||||
*/
|
||||
#include <sys/systm.h>
|
||||
#include <sys/device.h>
|
||||
|
||||
#include "machine/autoconf.h"
|
||||
#include "machine/obio.h"
|
||||
#include "machine/pte.h"
|
||||
#include "machine/param.h"
|
||||
#include "machine/mon.h"
|
||||
#include "machine/isr.h"
|
||||
#include <machine/autoconf.h>
|
||||
#include <machine/obio.h>
|
||||
#include <machine/pte.h>
|
||||
#include <machine/param.h>
|
||||
#include <machine/mon.h>
|
||||
#include <machine/isr.h>
|
||||
|
||||
#define ALL 0xFF
|
||||
|
||||
|
@ -1,9 +1,42 @@
|
||||
#include "sys/systm.h"
|
||||
#include "sys/device.h"
|
||||
/*
|
||||
* Copyright (c) 1993 Adam Glass
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Adam Glass.
|
||||
* 4. The name of the Author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY Adam Glass ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL Adam Glass BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Header: /cvsroot/src/sys/arch/sun3/dev/Attic/obmem.c,v 1.2 1994/03/01 08:07:16 glass Exp $
|
||||
*/
|
||||
|
||||
#include "machine/autoconf.h"
|
||||
#include "machine/obmem.h"
|
||||
#include "machine/param.h"
|
||||
#include <sys/systm.h>
|
||||
#include <sys/device.h>
|
||||
|
||||
#include <machine/autoconf.h>
|
||||
#include <machine/obmem.h>
|
||||
#include <machine/param.h>
|
||||
|
||||
extern void obmemattach __P((struct device *, struct device *, void *));
|
||||
|
||||
|
@ -165,10 +165,10 @@ int promioctl(dev, cmd, data, flag, p)
|
||||
prom_sc = UNIT_TO_PROM_SC(unit);
|
||||
tp = prom_sc->sc_tty;
|
||||
|
||||
error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag);
|
||||
error = (*linesw[tp->t_line].l_ioctl)(tp, cmd, data, flag, p);
|
||||
if (error >= 0)
|
||||
return error;
|
||||
error = ttioctl(tp, cmd, data, flag);
|
||||
error = ttioctl(tp, cmd, data, flag, p);
|
||||
if (error >= 0)
|
||||
return error;
|
||||
return ENOTTY;
|
||||
|
@ -24,14 +24,7 @@
|
||||
* rights to redistribute these changes.
|
||||
*/
|
||||
/*
|
||||
* HISTORY
|
||||
* $Log: scsi_5380.h,v $
|
||||
* Revision 1.1 1994/02/23 08:28:53 glass
|
||||
* boots, presents shell prompt, and doesn't crash immediately
|
||||
*
|
||||
* Revision 1.1 94/02/22 23:38:09 glass
|
||||
* hey, it gets to a shell prompt
|
||||
*
|
||||
* HISTORY (mach3)
|
||||
* Revision 2.3 91/08/24 12:25:10 af
|
||||
* Moved padding of regmap in impl file.
|
||||
* [91/08/02 04:22:39 af]
|
||||
|
@ -1,12 +1,44 @@
|
||||
#include "sys/systm.h"
|
||||
#include "sys/device.h"
|
||||
/*
|
||||
* Copyright (c) 1993 Adam Glass
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Adam Glass.
|
||||
* 4. The name of the Author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY Adam Glass ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL Adam Glass BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Header: /cvsroot/src/sys/arch/sun3/sun3/obio.c,v 1.6 1994/03/01 08:07:15 glass Exp $
|
||||
*/
|
||||
#include <sys/systm.h>
|
||||
#include <sys/device.h>
|
||||
|
||||
#include "machine/autoconf.h"
|
||||
#include "machine/obio.h"
|
||||
#include "machine/pte.h"
|
||||
#include "machine/param.h"
|
||||
#include "machine/mon.h"
|
||||
#include "machine/isr.h"
|
||||
#include <machine/autoconf.h>
|
||||
#include <machine/obio.h>
|
||||
#include <machine/pte.h>
|
||||
#include <machine/param.h>
|
||||
#include <machine/mon.h>
|
||||
#include <machine/isr.h>
|
||||
|
||||
#define ALL 0xFF
|
||||
|
||||
|
@ -1,9 +1,42 @@
|
||||
#include "sys/systm.h"
|
||||
#include "sys/device.h"
|
||||
/*
|
||||
* Copyright (c) 1993 Adam Glass
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by Adam Glass.
|
||||
* 4. The name of the Author may not be used to endorse or promote products
|
||||
* derived from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY Adam Glass ``AS IS'' AND
|
||||
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL Adam Glass BE LIABLE
|
||||
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Header: /cvsroot/src/sys/arch/sun3/sun3/obmem.c,v 1.2 1994/03/01 08:07:16 glass Exp $
|
||||
*/
|
||||
|
||||
#include "machine/autoconf.h"
|
||||
#include "machine/obmem.h"
|
||||
#include "machine/param.h"
|
||||
#include <sys/systm.h>
|
||||
#include <sys/device.h>
|
||||
|
||||
#include <machine/autoconf.h>
|
||||
#include <machine/obmem.h>
|
||||
#include <machine/param.h>
|
||||
|
||||
extern void obmemattach __P((struct device *, struct device *, void *));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user