Document the origins of include/arch/x86/cpu.h (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@367 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Uwe Hermann 2007-06-26 13:46:57 +00:00
commit f1f8bc2cd4
2 changed files with 16 additions and 15 deletions

View file

@ -90,6 +90,11 @@ Third-party Code and License Overview
Source: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 Source: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Current version we use: e2afe67453e5b1499459ee3596b1e7924a5208f5 Current version we use: e2afe67453e5b1499459ee3596b1e7924a5208f5
* include/arch/x86/cpu.h: GPLv2
Source: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Files: include/asm-i386/processor.h, arch/i386/kernel/cpu/mtrr/state.c
Current version we use: ?
* include/arch/x86/swab.h: GPLv2 * include/arch/x86/swab.h: GPLv2
Source: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 Source: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Current version we use: ? Current version we use: ?

View file

@ -1,19 +1,16 @@
/* /*
* This program is free software; you can redistribute it and/or modify * This file is part of the LinuxBIOS project.
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or * It is based on the Linux kernel files include/asm-i386/processor.h
* (at your option) any later version. * and arch/i386/kernel/cpu/mtrr/state.c.
* *
* This program is distributed in the hope that it will be useful, * Modifications are:
* but WITHOUT ANY WARRANTY; without even the implied warranty of * Copyright (C) 2004 Linux Networx
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
* GNU General Public License for more details. * Copyright (C) 2007 AMD
* * (Written by Yinghai Lu <yinghailu@amd.com> for AMD)
* You should have received a copy of the GNU General Public License * Copyright (C) 2007 Ronald G. Minnich <rminnich@gmail.com>
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
/* This code taken from LinuxBIOS v2, which was taken from Linux */
#ifndef ARCH_X86_CPU_H #ifndef ARCH_X86_CPU_H
#define ARCH_X86_CPU_H #define ARCH_X86_CPU_H
@ -191,5 +188,4 @@ static inline void disable_cache(void)
wbinvd(); wbinvd();
} }
#endif /* ARCH_X86_CPU_H */ #endif /* ARCH_X86_CPU_H */