generic.c (020abf03cd659388f94cb328e1e1df0656e0d7ff) generic.c (2f8163baada3dbd0ce891c35bc59ae46e773487a)
1/*
2 * linux/arch/arm/mach-sa1100/generic.c
3 *
4 * Author: Nicolas Pitre
5 *
6 * Code common to all SA11x0 machines.
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 */
1/*
2 * linux/arch/arm/mach-sa1100/generic.c
3 *
4 * Author: Nicolas Pitre
5 *
6 * Code common to all SA11x0 machines.
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#include <linux/gpio.h>
12#include <linux/module.h>
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/delay.h>
16#include <linux/pm.h>
17#include <linux/cpufreq.h>
18#include <linux/ioport.h>
19#include <linux/platform_device.h>
20
21#include <asm/div64.h>
22#include <mach/hardware.h>
23#include <asm/system.h>
24#include <asm/mach/map.h>
25#include <asm/mach/flash.h>
26#include <asm/irq.h>
13#include <linux/module.h>
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/delay.h>
17#include <linux/pm.h>
18#include <linux/cpufreq.h>
19#include <linux/ioport.h>
20#include <linux/platform_device.h>
21
22#include <asm/div64.h>
23#include <mach/hardware.h>
24#include <asm/system.h>
25#include <asm/mach/map.h>
26#include <asm/mach/flash.h>
27#include <asm/irq.h>
27#include <asm/gpio.h>
28
29#include "generic.h"
30
31unsigned int reset_status;
32EXPORT_SYMBOL(reset_status);
33
34#define NR_FREQS 16
35

--- 419 unchanged lines hidden ---
28
29#include "generic.h"
30
31unsigned int reset_status;
32EXPORT_SYMBOL(reset_status);
33
34#define NR_FREQS 16
35

--- 419 unchanged lines hidden ---