Skip to content

Commit

Permalink
clocksource/drivers/digicolor: Fix warning of non-static function
Browse files Browse the repository at this point in the history
Change the dc_timer function to be static as it is not used outside
this driver. This fixes the following warning:

drivers/clocksource/timer-digicolor.c:66:24: warning: symbol 'dc_timer' was not declared. Should it be static?

Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Acked-by: Baruch Siach <baruch@tkos.co.il>
  • Loading branch information
bjdooks-ct authored and dlezcano committed Jun 28, 2016
1 parent 2c436e4 commit 48419b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clocksource/timer-digicolor.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ struct digicolor_timer {
int timer_id; /* one of TIMER_* */
};

struct digicolor_timer *dc_timer(struct clock_event_device *ce)
static struct digicolor_timer *dc_timer(struct clock_event_device *ce)
{
return container_of(ce, struct digicolor_timer, ce);
}
Expand Down

0 comments on commit 48419b1

Please sign in to comment.