ARM: bcm: tidy up a few includes

Clean up a few header file includes, eliminating a few that are not
really needed and putting in their place some that are.

Signed-off-by: Alex Elder <elder@linaro.org>
Reviewed-by: Matt Porter <mporter@linaro.org>
Signed-off-by: Matt Porter <mporter@linaro.org>
This commit is contained in:
Alex Elder 2014-04-21 16:53:08 -05:00 committed by Matt Porter
parent 7b5fe9c911
commit d5c627b575
3 changed files with 5 additions and 6 deletions

View File

@ -11,13 +11,12 @@
* GNU General Public License for more details.
*/
#include <linux/clocksource.h>
#include <linux/of_address.h>
#include <linux/of_platform.h>
#include <linux/io.h>
#include <asm/mach/arch.h>
#include "bcm_kona_smc.h"
#include "kona.h"
#define RSTMGR_DT_STRING "brcm,bcm21664-resetmgr"

View File

@ -11,11 +11,12 @@
* GNU General Public License for more details.
*/
#include <linux/of_platform.h>
#include <linux/init.h>
#include <linux/printk.h>
#include <asm/hardware/cache-l2x0.h>
#include "bcm_kona_smc.h"
#include "kona.h"
void __init kona_l2_cache_init(void)
{

View File

@ -12,8 +12,7 @@
*/
#ifdef CONFIG_ARCH_BCM_MOBILE_L2_CACHE
void __init kona_l2_cache_init(void);
void kona_l2_cache_init(void);
#else
#define kona_l2_cache_init() ((void)0)
#endif