Commit 05454c26 authored by Kuppuswamy Sathyanarayanan's avatar Kuppuswamy Sathyanarayanan Committed by H. Peter Anvin

intel_mid: Renamed *mrst* to *intel_mid*

Following files contains code that is common to all intel mid
soc's. So renamed them as below.

mrst/mrst.c              -> intel-mid/intel-mid.c
mrst/vrtc.c              -> intel-mid/intel_mid_vrtc.c
mrst/early_printk_mrst.c -> intel-mid/intel_mid_vrtc.c
pci/mrst.c               -> pci/intel_mid_pci.c

Also, renamed the corresponding header files and made changes
to the driver files that included these header files.

To ensure that there are no functional changes, I have compared
the objdump of renamed files before and after rename and found
that the only difference is file name change.
Signed-off-by: default avatarKuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Link: http://lkml.kernel.org/r/1382049336-21316-4-git-send-email-david.a.cohen@linux.intel.comSigned-off-by: default avatarDavid Cohen <david.a.cohen@linux.intel.com>
Signed-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
parent d8059302
/* /*
* mrst.h: Intel Moorestown platform specific setup code * intel-mid.h: Intel MID specific setup code
* *
* (C) Copyright 2009 Intel Corporation * (C) Copyright 2009 Intel Corporation
* *
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
* as published by the Free Software Foundation; version 2 * as published by the Free Software Foundation; version 2
* of the License. * of the License.
*/ */
#ifndef _ASM_X86_MRST_H #ifndef _ASM_X86_INTEL_MID_H
#define _ASM_X86_MRST_H #define _ASM_X86_INTEL_MID_H
#include <linux/sfi.h> #include <linux/sfi.h>
...@@ -78,4 +78,4 @@ extern void intel_scu_devices_destroy(void); ...@@ -78,4 +78,4 @@ extern void intel_scu_devices_destroy(void);
extern void mrst_rtc_init(void); extern void mrst_rtc_init(void);
#endif /* _ASM_X86_MRST_H */ #endif /* _ASM_X86_INTEL_MID_H */
#ifndef _MRST_VRTC_H #ifndef _INTEL_MID_VRTC_H
#define _MRST_VRTC_H #define _INTEL_MID_VRTC_H
extern unsigned char vrtc_cmos_read(unsigned char reg); extern unsigned char vrtc_cmos_read(unsigned char reg);
extern void vrtc_cmos_write(unsigned char val, unsigned char reg); extern void vrtc_cmos_write(unsigned char val, unsigned char reg);
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include <asm/fixmap.h> #include <asm/fixmap.h>
#include <asm/apb_timer.h> #include <asm/apb_timer.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/time.h> #include <asm/time.h>
#define APBT_CLOCKEVENT_RATING 110 #define APBT_CLOCKEVENT_RATING 110
......
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
#include <xen/hvc-console.h> #include <xen/hvc-console.h>
#include <asm/pci-direct.h> #include <asm/pci-direct.h>
#include <asm/fixmap.h> #include <asm/fixmap.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/pgtable.h> #include <asm/pgtable.h>
#include <linux/usb/ehci_def.h> #include <linux/usb/ehci_def.h>
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
#include <asm/vsyscall.h> #include <asm/vsyscall.h>
#include <asm/x86_init.h> #include <asm/x86_init.h>
#include <asm/time.h> #include <asm/time.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/rtc.h> #include <asm/rtc.h>
#ifdef CONFIG_X86_32 #ifdef CONFIG_X86_32
......
...@@ -18,7 +18,7 @@ obj-$(CONFIG_X86_VISWS) += visws.o ...@@ -18,7 +18,7 @@ obj-$(CONFIG_X86_VISWS) += visws.o
obj-$(CONFIG_X86_NUMAQ) += numaq_32.o obj-$(CONFIG_X86_NUMAQ) += numaq_32.o
obj-$(CONFIG_X86_NUMACHIP) += numachip.o obj-$(CONFIG_X86_NUMACHIP) += numachip.o
obj-$(CONFIG_X86_INTEL_MID) += mrst.o obj-$(CONFIG_X86_INTEL_MID) += intel_mid_pci.o
obj-y += common.o early.o obj-y += common.o early.o
obj-y += bus_numa.o obj-y += bus_numa.o
......
/* /*
* Moorestown PCI support * Intel MID PCI support
* Copyright (c) 2008 Intel Corporation * Copyright (c) 2008 Intel Corporation
* Jesse Barnes <jesse.barnes@intel.com> * Jesse Barnes <jesse.barnes@intel.com>
* *
......
...@@ -4,7 +4,7 @@ obj-y += efi/ ...@@ -4,7 +4,7 @@ obj-y += efi/
obj-y += geode/ obj-y += geode/
obj-y += goldfish/ obj-y += goldfish/
obj-y += iris/ obj-y += iris/
obj-y += mrst/ obj-y += intel-mid/
obj-y += olpc/ obj-y += olpc/
obj-y += scx200/ obj-y += scx200/
obj-y += sfi/ obj-y += sfi/
......
obj-$(CONFIG_X86_INTEL_MID) += intel-mid.o
obj-$(CONFIG_X86_INTEL_MID) += intel_mid_vrtc.o
obj-$(CONFIG_EARLY_PRINTK_INTEL_MID) += early_printk_intel_mid.o
/* /*
* early_printk_mrst.c - early consoles for Intel MID platforms * early_printk_intel_mid.c - early consoles for Intel MID platforms
* *
* Copyright (c) 2008-2010, Intel Corporation * Copyright (c) 2008-2010, Intel Corporation
* *
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
#include <asm/fixmap.h> #include <asm/fixmap.h>
#include <asm/pgtable.h> #include <asm/pgtable.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#define MRST_SPI_TIMEOUT 0x200000 #define MRST_SPI_TIMEOUT 0x200000
#define MRST_REGBASE_SPI0 0xff128000 #define MRST_REGBASE_SPI0 0xff128000
......
/* /*
* mrst.c: Intel Moorestown platform specific setup code * intel-mid.c: Intel MID platform setup code
* *
* (C) Copyright 2008 Intel Corporation * (C) Copyright 2008, 2012 Intel Corporation
* Author: Jacob Pan (jacob.jun.pan@intel.com) * Author: Jacob Pan (jacob.jun.pan@intel.com)
* Author: Sathyanarayanan Kuppuswamy <sathyanarayanan.kuppuswamy@intel.com>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License * modify it under the terms of the GNU General Public License
...@@ -36,8 +37,8 @@ ...@@ -36,8 +37,8 @@
#include <asm/hw_irq.h> #include <asm/hw_irq.h>
#include <asm/apic.h> #include <asm/apic.h>
#include <asm/io_apic.h> #include <asm/io_apic.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/mrst-vrtc.h> #include <asm/intel_mid_vrtc.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/i8259.h> #include <asm/i8259.h>
#include <asm/intel_scu_ipc.h> #include <asm/intel_scu_ipc.h>
...@@ -219,7 +220,7 @@ static unsigned long __init mrst_calibrate_tsc(void) ...@@ -219,7 +220,7 @@ static unsigned long __init mrst_calibrate_tsc(void)
lapic_timer_frequency = fsb * 1000 / HZ; lapic_timer_frequency = fsb * 1000 / HZ;
/* mark tsc clocksource as reliable */ /* mark tsc clocksource as reliable */
set_cpu_cap(&boot_cpu_data, X86_FEATURE_TSC_RELIABLE); set_cpu_cap(&boot_cpu_data, X86_FEATURE_TSC_RELIABLE);
if (fast_calibrate) if (fast_calibrate)
return fast_calibrate; return fast_calibrate;
......
/* /*
* vrtc.c: Driver for virtual RTC device on Intel MID platform * intel_mid_vrtc.c: Driver for virtual RTC device on Intel MID platform
* *
* (C) Copyright 2009 Intel Corporation * (C) Copyright 2009 Intel Corporation
* *
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
#include <linux/sfi.h> #include <linux/sfi.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/mrst-vrtc.h> #include <asm/intel_mid_vrtc.h>
#include <asm/time.h> #include <asm/time.h>
#include <asm/fixmap.h> #include <asm/fixmap.h>
......
obj-$(CONFIG_X86_INTEL_MID) += mrst.o
obj-$(CONFIG_X86_INTEL_MID) += vrtc.o
obj-$(CONFIG_EARLY_PRINTK_INTEL_MID) += early_printk_mrst.o
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#include "psb_intel_reg.h" #include "psb_intel_reg.h"
#include "mdfld_output.h" #include "mdfld_output.h"
#include <asm/mrst.h> #include <asm/intel-mid.h>
#define FLD_MASK(start, end) (((1 << ((start) - (end) + 1)) - 1) << (end)) #define FLD_MASK(start, end) (((1 << ((start) - (end) + 1)) - 1) << (end))
#define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end)) #define FLD_VAL(val, start, end) (((val) << (end)) & FLD_MASK(start, end))
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "psb_drv.h" #include "psb_drv.h"
#include "psb_reg.h" #include "psb_reg.h"
#include "psb_intel_reg.h" #include "psb_intel_reg.h"
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/intel_scu_ipc.h> #include <asm/intel_scu_ipc.h>
#include "mid_bios.h" #include "mid_bios.h"
#include "intel_bios.h" #include "intel_bios.h"
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
#include <linux/i2c.h> #include <linux/i2c.h>
#include <drm/drmP.h> #include <drm/drmP.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include "intel_bios.h" #include "intel_bios.h"
#include "psb_drv.h" #include "psb_drv.h"
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/sfi.h> #include <linux/sfi.h>
#include <linux/module.h> #include <linux/module.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/intel_scu_ipc.h> #include <asm/intel_scu_ipc.h>
/* IPC defines the following message types */ /* IPC defines the following message types */
......
...@@ -38,8 +38,8 @@ ...@@ -38,8 +38,8 @@
#include <asm-generic/rtc.h> #include <asm-generic/rtc.h>
#include <asm/intel_scu_ipc.h> #include <asm/intel_scu_ipc.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include <asm/mrst-vrtc.h> #include <asm/intel_mid_vrtc.h>
struct mrst_rtc { struct mrst_rtc {
struct rtc_device *rtc; struct rtc_device *rtc;
......
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
#include <linux/atomic.h> #include <linux/atomic.h>
#include <asm/intel_scu_ipc.h> #include <asm/intel_scu_ipc.h>
#include <asm/apb_timer.h> #include <asm/apb_timer.h>
#include <asm/mrst.h> #include <asm/intel-mid.h>
#include "intel_scu_watchdog.h" #include "intel_scu_watchdog.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment