Deleted Added
full compact
bt_eisa.c (146734) bt_eisa.c (165102)
1/*-
2 * Product specific probe and attach routines for:
3 * Buslogic BT74x SCSI controllers
4 *
5 * Copyright (c) 1995, 1998, 1999 Justin T. Gibbs
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 */
30
31#include <sys/cdefs.h>
1/*-
2 * Product specific probe and attach routines for:
3 * Buslogic BT74x SCSI controllers
4 *
5 * Copyright (c) 1995, 1998, 1999 Justin T. Gibbs
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: head/sys/dev/buslogic/bt_eisa.c 146734 2005-05-29 04:42:30Z nyan $");
32__FBSDID("$FreeBSD: head/sys/dev/buslogic/bt_eisa.c 165102 2006-12-11 18:28:31Z mjacob $");
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/kernel.h>
37#include <sys/module.h>
38#include <sys/lock.h>
39#include <sys/mutex.h>
40#include <sys/bus.h>

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

349 "bt",
350 bt_eisa_methods,
351 sizeof(struct bt_softc),
352};
353
354static devclass_t bt_devclass;
355
356DRIVER_MODULE(bt, eisa, bt_eisa_driver, bt_devclass, 0, 0);
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/kernel.h>
37#include <sys/module.h>
38#include <sys/lock.h>
39#include <sys/mutex.h>
40#include <sys/bus.h>

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

349 "bt",
350 bt_eisa_methods,
351 sizeof(struct bt_softc),
352};
353
354static devclass_t bt_devclass;
355
356DRIVER_MODULE(bt, eisa, bt_eisa_driver, bt_devclass, 0, 0);
357MODULE_DEPEND(bt, eisa, 1, 1, 1);