Deleted Added
full compact
if_cm_isa.c (92739) if_cm_isa.c (113506)
1/* $NetBSD: if_bah_zbus.c,v 1.6 2000/01/23 21:06:12 aymeric Exp $ */
1/* $NetBSD: if_bah_zbus.c,v 1.6 2000/01/23 21:06:12 aymeric Exp $ */
2/* $FreeBSD: head/sys/dev/cm/if_cm_isa.c 92739 2002-03-20 02:08:01Z alfred $ */
2/* $FreeBSD: head/sys/dev/cm/if_cm_isa.c 113506 2003-04-15 06:37:30Z mdodd $ */
3
4/*-
5 * Copyright (c) 1994, 1995, 1998 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Ignatios Souvatzis.
10 *

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

127};
128
129static driver_t cm_isa_driver = {
130 "cm",
131 cm_isa_methods,
132 sizeof(struct cm_softc)
133};
134
3
4/*-
5 * Copyright (c) 1994, 1995, 1998 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Ignatios Souvatzis.
10 *

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

127};
128
129static driver_t cm_isa_driver = {
130 "cm",
131 cm_isa_methods,
132 sizeof(struct cm_softc)
133};
134
135DRIVER_MODULE(if_cm, isa, cm_isa_driver, cm_devclass, 0, 0);
135DRIVER_MODULE(cm, isa, cm_isa_driver, cm_devclass, 0, 0);
136MODULE_DEPEND(cm, isa, 1, 1, 1);