x86/platform/intel-mid: Remove custom TSC calibration
[platform/kernel/linux-rpi.git] / arch / x86 / platform / intel-mid / mfld.c
1 /*
2  * mfld.c: Intel Medfield platform setup code
3  *
4  * (C) Copyright 2013 Intel Corporation
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; version 2
9  * of the License.
10  */
11
12 #include <linux/init.h>
13
14 #include <asm/intel-mid.h>
15
16 #include "intel_mid_weak_decls.h"
17
18 static void __init penwell_arch_setup(void)
19 {
20 }
21
22 static struct intel_mid_ops penwell_ops = {
23         .arch_setup = penwell_arch_setup,
24 };
25
26 void *get_penwell_ops(void)
27 {
28         return &penwell_ops;
29 }
30
31 void *get_cloverview_ops(void)
32 {
33         return &penwell_ops;
34 }