pxa27x.c (0a2d31b62dba9b5b92a38c67c9cc42630513662a) | pxa27x.c (2f8163baada3dbd0ce891c35bc59ae46e773487a) |
---|---|
1/* 2 * linux/arch/arm/mach-pxa/pxa27x.c 3 * 4 * Author: Nicolas Pitre 5 * Created: Nov 05, 2002 6 * Copyright: MontaVista Software Inc. 7 * 8 * Code specific to PXA27x aka Bulverde. 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License version 2 as 12 * published by the Free Software Foundation. 13 */ | 1/* 2 * linux/arch/arm/mach-pxa/pxa27x.c 3 * 4 * Author: Nicolas Pitre 5 * Created: Nov 05, 2002 6 * Copyright: MontaVista Software Inc. 7 * 8 * Code specific to PXA27x aka Bulverde. 9 * 10 * This program is free software; you can redistribute it and/or modify 11 * it under the terms of the GNU General Public License version 2 as 12 * published by the Free Software Foundation. 13 */ |
14#include <linux/gpio.h> |
|
14#include <linux/module.h> 15#include <linux/kernel.h> 16#include <linux/init.h> 17#include <linux/suspend.h> 18#include <linux/platform_device.h> 19#include <linux/syscore_ops.h> 20#include <linux/io.h> 21#include <linux/irq.h> 22#include <linux/i2c/pxa-i2c.h> 23 24#include <asm/mach/map.h> 25#include <mach/hardware.h> 26#include <asm/irq.h> 27#include <asm/suspend.h> 28#include <mach/irqs.h> | 15#include <linux/module.h> 16#include <linux/kernel.h> 17#include <linux/init.h> 18#include <linux/suspend.h> 19#include <linux/platform_device.h> 20#include <linux/syscore_ops.h> 21#include <linux/io.h> 22#include <linux/irq.h> 23#include <linux/i2c/pxa-i2c.h> 24 25#include <asm/mach/map.h> 26#include <mach/hardware.h> 27#include <asm/irq.h> 28#include <asm/suspend.h> 29#include <mach/irqs.h> |
29#include <mach/gpio.h> | |
30#include <mach/pxa27x.h> 31#include <mach/reset.h> 32#include <mach/ohci.h> 33#include <mach/pm.h> 34#include <mach/dma.h> 35#include <mach/smemc.h> 36 37#include "generic.h" --- 429 unchanged lines hidden --- | 30#include <mach/pxa27x.h> 31#include <mach/reset.h> 32#include <mach/ohci.h> 33#include <mach/pm.h> 34#include <mach/dma.h> 35#include <mach/smemc.h> 36 37#include "generic.h" --- 429 unchanged lines hidden --- |