1/*
2 *  linux/arch/arm/mach-mx1ads/cpu.c
3 *
4 *  Copyright (C) 2001 Deep Blue Solutions Ltd.
5 *
6 *  $Id: cpu.c,v 1.1.1.1 2008/10/15 03:26:00 james26_jang Exp $
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 * CPU support functions
13 */
14
15#include <linux/config.h>
16#include <linux/types.h>
17#include <linux/kernel.h>
18#include <linux/cpufreq.h>
19#include <linux/init.h>
20
21#include <asm/hardware.h>
22#include <asm/io.h>
23
24
25static int __init cpu_init(void)
26{
27	return 0;
28}
29
30__initcall(cpu_init);
31