tuntap: switch to use rtnl_dereference()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / boot / mca.c
bloba95a531148ef9562ca408a9f451914748159b71e
1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
5 * Copyright 2009 Intel Corporation; author H. Peter Anvin
7 * This file is part of the Linux kernel, and is made available under
8 * the terms of the GNU General Public License version 2.
10 * ----------------------------------------------------------------------- */
13 * Get the MCA system description table
16 #include "boot.h"
18 int query_mca(void)
20 struct biosregs ireg, oreg;
21 u16 len;
23 initregs(&ireg);
24 ireg.ah = 0xc0;
25 intcall(0x15, &ireg, &oreg);
27 if (oreg.eflags & X86_EFLAGS_CF)
28 return -1; /* No MCA present */
30 set_fs(oreg.es);
31 len = rdfs16(oreg.bx);
33 if (len > sizeof(boot_params.sys_desc_table))
34 len = sizeof(boot_params.sys_desc_table);
36 copy_from_fs(&boot_params.sys_desc_table, oreg.bx, len);
37 return 0;