Deleted Added
full compact
mptable_pci.c (214446) mptable_pci.c (215051)
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

28 */
29
30/*
31 * Host to PCI and PCI to PCI bridge drivers that use the MP Table to route
32 * interrupts from PCI devices to I/O APICs.
33 */
34
35#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2003 John Baldwin <jhb@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

28 */
29
30/*
31 * Host to PCI and PCI to PCI bridge drivers that use the MP Table to route
32 * interrupts from PCI devices to I/O APICs.
33 */
34
35#include <sys/cdefs.h>
36__FBSDID("$FreeBSD: head/sys/x86/x86/mptable_pci.c 214446 2010-10-28 07:58:06Z attilio $");
36__FBSDID("$FreeBSD: head/sys/x86/x86/mptable_pci.c 215051 2010-11-09 20:28:09Z attilio $");
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/bus.h>
41#include <sys/kernel.h>
42#include <sys/module.h>
43
44#include <dev/pci/pcireg.h>
45#include <dev/pci/pcivar.h>
46#include <dev/pci/pcib_private.h>
37
38#include <sys/param.h>
39#include <sys/systm.h>
40#include <sys/bus.h>
41#include <sys/kernel.h>
42#include <sys/module.h>
43
44#include <dev/pci/pcireg.h>
45#include <dev/pci/pcivar.h>
46#include <dev/pci/pcib_private.h>
47#include <x86/mptable.h>
47#include <machine/legacyvar.h>
48#include <machine/legacyvar.h>
48#include <machine/mptable.h>
49#include <machine/pci_cfgreg.h>
50
51#include "pcib_if.h"
52
53/* Host to PCI bridge driver. */
54
55static int
56mptable_hostb_probe(device_t dev)

--- 121 unchanged lines hidden ---
49#include <machine/pci_cfgreg.h>
50
51#include "pcib_if.h"
52
53/* Host to PCI bridge driver. */
54
55static int
56mptable_hostb_probe(device_t dev)

--- 121 unchanged lines hidden ---