Deleted Added
sdiff udiff text old ( 148318 ) new ( 150003 )
full compact
1/*-
2 * Copyright (c) 2002 Mitsaru Iwasaki
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

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

24 * SUCH DAMAGE.
25 */
26
27/*
28 * ACPI Table interfaces
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: head/sys/dev/acpica/Osd/OsdTable.c 148318 2005-07-22 23:10:02Z njl $");
33
34#include <sys/param.h>
35#include <sys/endian.h>
36#include <sys/kernel.h>
37#include <sys/linker.h>
38
39#include "acpi.h"
40#include <contrib/dev/acpica/actables.h>
41
42#undef _COMPONENT
43#define _COMPONENT ACPI_TABLES
44
45static char acpi_osname[128];
46TUNABLE_STR("hw.acpi.osname", acpi_osname, sizeof(acpi_osname));
47

--- 66 unchanged lines hidden ---