Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6234383 authored by Leo Chen's avatar Leo Chen Committed by Russell King
Browse files

ARM: 5748/1: bcmring: fix build warning messages



Fix the warning messages during kernel build for bcmring.

Signed-off-by: default avatarLeo Hao Chen <leochen@broadcom.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 3257f43d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -271,12 +271,12 @@ static struct irqaction bcmring_timer_irq = {
	.handler = bcmring_timer_interrupt,
};

static cycle_t bcmring_get_cycles_timer1(void)
static cycle_t bcmring_get_cycles_timer1(struct clocksource *cs)
{
	return ~readl(TIMER1_VA_BASE + TIMER_VALUE);
}

static cycle_t bcmring_get_cycles_timer3(void)
static cycle_t bcmring_get_cycles_timer3(struct clocksource *cs)
{
	return ~readl(TIMER3_VA_BASE + TIMER_VALUE);
}
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ static inline void arch_idle(void)
	cpu_do_idle();
}

static inline void arch_reset(char mode, char *cmd)
static inline void arch_reset(char mode, const char *cmd)
{
	printk("arch_reset:%c %x\n", mode, bcmring_arch_warm_reboot);