devices.c (0a2d31b62dba9b5b92a38c67c9cc42630513662a) devices.c (2f8163baada3dbd0ce891c35bc59ae46e773487a)
1/*
2 * linux/arch/arm/mach-omap2/devices.c
3 *
4 * OMAP2 platform device setup/initialization
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
1/*
2 * linux/arch/arm/mach-omap2/devices.c
3 *
4 * OMAP2 platform device setup/initialization
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
11#include <linux/gpio.h>
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/platform_device.h>
15#include <linux/io.h>
16#include <linux/clk.h>
17#include <linux/err.h>
18#include <linux/slab.h>
19
20#include <mach/hardware.h>
21#include <mach/irqs.h>
22#include <asm/mach-types.h>
23#include <asm/mach/map.h>
24#include <asm/pmu.h>
25
26#include <plat/tc.h>
27#include <plat/board.h>
28#include <plat/mcbsp.h>
12#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/platform_device.h>
15#include <linux/io.h>
16#include <linux/clk.h>
17#include <linux/err.h>
18#include <linux/slab.h>
19
20#include <mach/hardware.h>
21#include <mach/irqs.h>
22#include <asm/mach-types.h>
23#include <asm/mach/map.h>
24#include <asm/pmu.h>
25
26#include <plat/tc.h>
27#include <plat/board.h>
28#include <plat/mcbsp.h>
29#include <mach/gpio.h>
30#include <plat/mmc.h>
31#include <plat/dma.h>
32#include <plat/omap_hwmod.h>
33#include <plat/omap_device.h>
34#include <plat/omap4-keypad.h>
35
36#include "mux.h"
37#include "control.h"

--- 697 unchanged lines hidden ---
29#include <plat/mmc.h>
30#include <plat/dma.h>
31#include <plat/omap_hwmod.h>
32#include <plat/omap_device.h>
33#include <plat/omap4-keypad.h>
34
35#include "mux.h"
36#include "control.h"

--- 697 unchanged lines hidden ---