aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-01-30 07:32:04 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:32:04 -0500
commitb1df07bd6674a84fbd9248759dc3fa3ff5c78e5b (patch)
treee9cb1ffbff14cfbb94b869b05e96a7dbc77ed0cf
parentc6334593c61c71ab2e666c015eef13995736f49a (diff)
x86: change paravirt_32.c name
This patch changes paravirt_32.c to paravirt.c. The goal is to have paravirt support in x86_64, so we do it in a common file Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--arch/x86/kernel/Makefile_322
-rw-r--r--arch/x86/kernel/paravirt.c (renamed from arch/x86/kernel/paravirt_32.c)3
2 files changed, 4 insertions, 1 deletions
diff --git a/arch/x86/kernel/Makefile_32 b/arch/x86/kernel/Makefile_32
index a67198044b0..cfb71a5deb1 100644
--- a/arch/x86/kernel/Makefile_32
+++ b/arch/x86/kernel/Makefile_32
@@ -48,7 +48,7 @@ obj-$(CONFIG_K8_NB) += k8.o
48obj-$(CONFIG_MGEODE_LX) += geode_32.o mfgpt_32.o 48obj-$(CONFIG_MGEODE_LX) += geode_32.o mfgpt_32.o
49 49
50obj-$(CONFIG_VMI) += vmi_32.o vmiclock_32.o 50obj-$(CONFIG_VMI) += vmi_32.o vmiclock_32.o
51obj-$(CONFIG_PARAVIRT) += paravirt_32.o 51obj-$(CONFIG_PARAVIRT) += paravirt.o
52obj-y += pcspeaker.o 52obj-y += pcspeaker.o
53 53
54obj-$(CONFIG_SCx200) += scx200_32.o 54obj-$(CONFIG_SCx200) += scx200_32.o
diff --git a/arch/x86/kernel/paravirt_32.c b/arch/x86/kernel/paravirt.c
index dd063fba2b2..1a170877f46 100644
--- a/arch/x86/kernel/paravirt_32.c
+++ b/arch/x86/kernel/paravirt.c
@@ -14,7 +14,10 @@
14 You should have received a copy of the GNU General Public License 14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software 15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
18 2007 - x86_64 support added by Glauber de Oliveira Costa, Red Hat Inc
17*/ 19*/
20
18#include <linux/errno.h> 21#include <linux/errno.h>
19#include <linux/module.h> 22#include <linux/module.h>
20#include <linux/efi.h> 23#include <linux/efi.h>