dect
/
linux-2.6
Archived
13
0
Fork 0

mfd: Staticise unexported symbols in ASIC3

There's no use of either of these outside of the driver so they can be
declared static.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Mark Brown 2010-12-11 12:59:35 +00:00 committed by Samuel Ortiz
parent 4d1cdbf696
commit 59f2ad2e0e
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ struct asic3_clk {
.rate = _rate, \
}
struct asic3_clk asic3_clk_init[] __initdata = {
static struct asic3_clk asic3_clk_init[] __initdata = {
INIT_CDEX(SPI, 0),
INIT_CDEX(OWM, 5000000),
INIT_CDEX(PWM0, 0),
@ -102,7 +102,7 @@ static inline u32 asic3_read_register(struct asic3 *asic,
(reg >> asic->bus_shift));
}
void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set)
static void asic3_set_register(struct asic3 *asic, u32 reg, u32 bits, bool set)
{
unsigned long flags;
u32 val;