ARM: ux500: Staticize local symbols in cpu-db8500.c
Symbols local to this file are made static. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
51fe0057cd
commit
0d01ab3aa4
1 changed files with 4 additions and 4 deletions
|
@ -33,11 +33,11 @@
|
||||||
#include "db8500-regs.h"
|
#include "db8500-regs.h"
|
||||||
#include "id.h"
|
#include "id.h"
|
||||||
|
|
||||||
struct ab8500_platform_data ab8500_platdata = {
|
static struct ab8500_platform_data ab8500_platdata = {
|
||||||
.regulator = &ab8500_regulator_plat_data,
|
.regulator = &ab8500_regulator_plat_data,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct prcmu_pdata db8500_prcmu_pdata = {
|
static struct prcmu_pdata db8500_prcmu_pdata = {
|
||||||
.ab_platdata = &ab8500_platdata,
|
.ab_platdata = &ab8500_platdata,
|
||||||
.version_offset = DB8500_PRCMU_FW_VERSION_OFFSET,
|
.version_offset = DB8500_PRCMU_FW_VERSION_OFFSET,
|
||||||
.legacy_offset = DB8500_PRCMU_LEGACY_OFFSET,
|
.legacy_offset = DB8500_PRCMU_LEGACY_OFFSET,
|
||||||
|
@ -82,7 +82,7 @@ static struct map_desc u9540_io_desc[] __initdata = {
|
||||||
__IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K + SZ_8K),
|
__IO_DEV_DESC(U8500_PRCMU_TCDM_BASE, SZ_4K + SZ_8K),
|
||||||
};
|
};
|
||||||
|
|
||||||
void __init u8500_map_io(void)
|
static void __init u8500_map_io(void)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
* Map the UARTs early so that the DEBUG_LL stuff continues to work.
|
* Map the UARTs early so that the DEBUG_LL stuff continues to work.
|
||||||
|
@ -119,7 +119,7 @@ static irqreturn_t db8500_pmu_handler(int irq, void *dev, irq_handler_t handler)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct arm_pmu_platdata db8500_pmu_platdata = {
|
static struct arm_pmu_platdata db8500_pmu_platdata = {
|
||||||
.handle_irq = db8500_pmu_handler,
|
.handle_irq = db8500_pmu_handler,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue