ARM: OMAP2+: Prepare to move GPMC to drivers by platform data header
[linux/fpc-iii.git] / arch / x86 / boot / regs.c
blobc0fb356a3092e55f9f70aba1eea1bd8db74d77ae
1 /* -----------------------------------------------------------------------
3 * Copyright 2009 Intel Corporation; author H. Peter Anvin
5 * This file is part of the Linux kernel, and is made available under
6 * the terms of the GNU General Public License version 2 or (at your
7 * option) any later version; incorporated herein by reference.
9 * ----------------------------------------------------------------------- */
12 * Simple helper function for initializing a register set.
14 * Note that this sets EFLAGS_CF in the input register set; this
15 * makes it easier to catch functions which do nothing but don't
16 * explicitly set CF.
19 #include "boot.h"
20 #include "string.h"
22 void initregs(struct biosregs *reg)
24 memset(reg, 0, sizeof *reg);
25 reg->eflags |= X86_EFLAGS_CF;
26 reg->ds = ds();
27 reg->es = ds();
28 reg->fs = fs();
29 reg->gs = gs();