common.c (4d68c05ce11f4cdf6a6392f3a18dc6a985b4d0c4) | common.c (ee0839c22cdda7f2e5f06e2d0351e2b49e0975ff) |
---|---|
1/* 2 * linux/arch/arm/mach-omap2/common.c 3 * 4 * Code common to all OMAP2+ machines. 5 * 6 * Copyright (C) 2009 Texas Instruments 7 * Copyright (C) 2010 Nokia Corporation 8 * Tony Lindgren <tony@atomide.com> 9 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com> 10 * 11 * This program is free software; you can redistribute it and/or modify 12 * it under the terms of the GNU General Public License version 2 as 13 * published by the Free Software Foundation. 14 */ 15#include <linux/kernel.h> 16#include <linux/init.h> 17#include <linux/clk.h> 18#include <linux/io.h> 19 | 1/* 2 * linux/arch/arm/mach-omap2/common.c 3 * 4 * Code common to all OMAP2+ machines. 5 * 6 * Copyright (C) 2009 Texas Instruments 7 * Copyright (C) 2010 Nokia Corporation 8 * Tony Lindgren <tony@atomide.com> 9 * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com> 10 * 11 * This program is free software; you can redistribute it and/or modify 12 * it under the terms of the GNU General Public License version 2 as 13 * published by the Free Software Foundation. 14 */ 15#include <linux/kernel.h> 16#include <linux/init.h> 17#include <linux/clk.h> 18#include <linux/io.h> 19 |
20#include "common.h" | |
21#include <plat/board.h> 22#include <plat/mux.h> | 20#include <plat/board.h> 21#include <plat/mux.h> |
23 | |
24#include <plat/clock.h> 25 | 22#include <plat/clock.h> 23 |
24#include "iomap.h" 25#include "common.h" |
|
26#include "sdrc.h" 27#include "control.h" 28 29/* Global address base setup code */ 30 31#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) 32 33static void __init __omap2_set_globals(struct omap_globals *omap2_globals) --- 149 unchanged lines hidden --- | 26#include "sdrc.h" 27#include "control.h" 28 29/* Global address base setup code */ 30 31#if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) 32 33static void __init __omap2_set_globals(struct omap_globals *omap2_globals) --- 149 unchanged lines hidden --- |