Deleted Added
full compact
if_hme_sbus.c (119418) if_hme_sbus.c (119696)
1/*-
2 * Copyright (c) 1999 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Paul Kranenburg.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 23 unchanged lines hidden (view full) ---

32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 *
36 * from: NetBSD: if_hme_sbus.c,v 1.9 2001/11/13 06:58:17 lukem Exp
37 */
38
39#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1999 The NetBSD Foundation, Inc.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to The NetBSD Foundation
6 * by Paul Kranenburg.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 23 unchanged lines hidden (view full) ---

32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 *
36 * from: NetBSD: if_hme_sbus.c,v 1.9 2001/11/13 06:58:17 lukem Exp
37 */
38
39#include <sys/cdefs.h>
40__FBSDID("$FreeBSD: head/sys/dev/hme/if_hme_sbus.c 119418 2003-08-24 17:55:58Z obrien $");
40__FBSDID("$FreeBSD: head/sys/dev/hme/if_hme_sbus.c 119696 2003-09-02 20:24:42Z marcel $");
41
42/*
43 * SBus front-end device driver for the HME ethernet device.
44 */
45
46#include <sys/param.h>
47#include <sys/systm.h>
48#include <sys/bus.h>
49#include <sys/kernel.h>
50#include <sys/resource.h>
51#include <sys/socket.h>
52
53#include <machine/bus.h>
41
42/*
43 * SBus front-end device driver for the HME ethernet device.
44 */
45
46#include <sys/param.h>
47#include <sys/systm.h>
48#include <sys/bus.h>
49#include <sys/kernel.h>
50#include <sys/resource.h>
51#include <sys/socket.h>
52
53#include <machine/bus.h>
54#include <dev/ofw/openfirm.h>
54#include <machine/ofw_machdep.h>
55#include <machine/resource.h>
56
57#include <sys/rman.h>
58
59#include <dev/ofw/openfirm.h>
60
61#include <net/ethernet.h>

--- 270 unchanged lines hidden ---
55#include <machine/ofw_machdep.h>
56#include <machine/resource.h>
57
58#include <sys/rman.h>
59
60#include <dev/ofw/openfirm.h>
61
62#include <net/ethernet.h>

--- 270 unchanged lines hidden ---