Deleted Added
sdiff udiff text old ( 96442 ) new ( 96912 )
full compact
1/*-
2 * Copyright (c) 2001 Doug Rabson
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/ia64/acpica/madt.c 96442 2002-05-12 05:54:21Z marcel $
27 */
28
29#include "acpi.h"
30
31struct sapic *sapic_create(int, int, u_int64_t);
32
33#pragma pack(1)
34
35#define APIC_INTERRUPT_SOURCE_OVERRIDE 2
36#define APIC_NMI 3
37#define APIC_LOCAL_APIC_NMI 4
38#define APIC_LOCAL_APIC_OVERRIDE 5

--- 243 unchanged lines hidden ---