Deleted Added
full compact
bios.c (121995) bios.c (129876)
1/*-
2 * Copyright (c) 1997 Michael Smith
3 * Copyright (c) 1998 Jonathan Lemon
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:

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

21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997 Michael Smith
3 * Copyright (c) 1998 Jonathan Lemon
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:

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

21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/i386/i386/bios.c 121995 2003-11-03 22:22:04Z jhb $");
29__FBSDID("$FreeBSD: head/sys/i386/i386/bios.c 129876 2004-05-30 17:57:46Z phk $");
30
31/*
32 * Code for dealing with the BIOS in x86 PC systems.
33 */
34
35#include "opt_isa.h"
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/malloc.h>
30
31/*
32 * Code for dealing with the BIOS in x86 PC systems.
33 */
34
35#include "opt_isa.h"
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/malloc.h>
41#include <sys/module.h>
41#include <sys/bus.h>
42#include <sys/pcpu.h>
43#include <vm/vm.h>
44#include <vm/pmap.h>
45#include <machine/md_var.h>
46#include <machine/segments.h>
47#include <machine/stdarg.h>
48#include <machine/vmparam.h>

--- 628 unchanged lines hidden ---
42#include <sys/bus.h>
43#include <sys/pcpu.h>
44#include <vm/vm.h>
45#include <vm/pmap.h>
46#include <machine/md_var.h>
47#include <machine/segments.h>
48#include <machine/stdarg.h>
49#include <machine/vmparam.h>

--- 628 unchanged lines hidden ---