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 * arch/i386/boot/mca.c
14 * Get the MCA system description table
29 : "=acd" (err
), "=acdSD" (es
), "=b" (bx
)
33 return -1; /* No MCA present */
38 if (len
> sizeof(boot_params
.sys_desc_table
))
39 len
= sizeof(boot_params
.sys_desc_table
);
41 copy_from_fs(&boot_params
.sys_desc_table
, bx
, len
);