clockevents/drivers/timer-atmel-pit: Fix typo in structure initialization
Reported-by: Peter Mamonov <pmamonov@gmail.com> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
This commit is contained in:
parent
daea72831d
commit
005e56272b
|
@ -202,8 +202,8 @@ static void __init at91sam926x_pit_common_init(struct pit_data *data)
|
|||
data->clksrc.mask = CLOCKSOURCE_MASK(bits);
|
||||
data->clksrc.name = "pit";
|
||||
data->clksrc.rating = 175;
|
||||
data->clksrc.read = read_pit_clk,
|
||||
data->clksrc.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
||||
data->clksrc.read = read_pit_clk;
|
||||
data->clksrc.flags = CLOCK_SOURCE_IS_CONTINUOUS;
|
||||
clocksource_register_hz(&data->clksrc, pit_rate);
|
||||
|
||||
/* Set up irq handler */
|
||||
|
|
Loading…
Reference in New Issue