1 /* -*- linux-c -*- ------------------------------------------------------- *
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright 2007 rPath, Inc. - All Rights Reserved
6 * This file is part of the Linux kernel, and is made available under
7 * the terms of the GNU General Public License version 2.
9 * ----------------------------------------------------------------------- */
12 * Get the MCA system description table
27 : "=acd" (err), "=acdSD" (es), "=b" (bx)
31 return -1; /* No MCA present */
36 if (len > sizeof(boot_params.sys_desc_table))
37 len = sizeof(boot_params.sys_desc_table);
39 copy_from_fs(&boot_params.sys_desc_table, bx, len);