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/voyager.c
14 * Get the Voyager config information
19 int query_voyager(void)
23 /* Abuse the apm_bios_info area for this */
24 u8 *data_ptr = (u8 *)&boot_params.apm_bios_info;
26 data_ptr[0] = 0xff; /* Flag on config not found(?) */
33 : "=q" (err), "=r" (es), "=D" (di)
37 return -1; /* Not Voyager */
40 copy_from_fs(data_ptr, di, 7); /* Table is 7 bytes apparently */