Deleted Added
full compact
npx.c (82154) npx.c (82555)
1/*-
2 * Copyright (c) 1990 William Jolitz.
3 * Copyright (c) 1991 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * from: @(#)npx.c 7.2 (Berkeley) 5/12/91
1/*-
2 * Copyright (c) 1990 William Jolitz.
3 * Copyright (c) 1991 The Regents of the University of California.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * from: @(#)npx.c 7.2 (Berkeley) 5/12/91
35 * $FreeBSD: head/sys/i386/isa/npx.c 82154 2001-08-23 01:03:56Z peter $
35 * $FreeBSD: head/sys/i386/isa/npx.c 82555 2001-08-30 09:17:03Z msmith $
36 */
37
38#include "opt_cpu.h"
39#include "opt_debug_npx.h"
40#include "opt_math_emulate.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>

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

999
1000/*
1001 * We prefer to attach to the root nexus so that the usual case (exception 16)
1002 * doesn't describe the processor as being `on isa'.
1003 */
1004DRIVER_MODULE(npx, nexus, npx_driver, npx_devclass, 0, 0);
1005
1006/*
36 */
37
38#include "opt_cpu.h"
39#include "opt_debug_npx.h"
40#include "opt_math_emulate.h"
41
42#include <sys/param.h>
43#include <sys/systm.h>

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

999
1000/*
1001 * We prefer to attach to the root nexus so that the usual case (exception 16)
1002 * doesn't describe the processor as being `on isa'.
1003 */
1004DRIVER_MODULE(npx, nexus, npx_driver, npx_devclass, 0, 0);
1005
1006/*
1007 * This sucks up the legacy ISA support assignments from PNPBIOS.
1007 * This sucks up the legacy ISA support assignments from PNPBIOS/ACPI.
1008 */
1009static struct isa_pnp_id npxisa_ids[] = {
1010 { 0x040cd041, "Legacy ISA coprocessor support" }, /* PNP0C04 */
1011 { 0 }
1012};
1013
1014static int
1015npxisa_probe(device_t dev)

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

1043 "npxisa",
1044 npxisa_methods,
1045 1, /* no softc */
1046};
1047
1048static devclass_t npxisa_devclass;
1049
1050DRIVER_MODULE(npxisa, isa, npxisa_driver, npxisa_devclass, 0, 0);
1008 */
1009static struct isa_pnp_id npxisa_ids[] = {
1010 { 0x040cd041, "Legacy ISA coprocessor support" }, /* PNP0C04 */
1011 { 0 }
1012};
1013
1014static int
1015npxisa_probe(device_t dev)

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

1043 "npxisa",
1044 npxisa_methods,
1045 1, /* no softc */
1046};
1047
1048static devclass_t npxisa_devclass;
1049
1050DRIVER_MODULE(npxisa, isa, npxisa_driver, npxisa_devclass, 0, 0);
1051DRIVER_MODULE(npxisa, acpi, npxisa_driver, npxisa_devclass, 0, 0);
1051
1052