diff options
| -rw-r--r-- | drivers/clocksource/clksrc-of.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/clocksource/clksrc-of.c b/drivers/clocksource/clksrc-of.c index 35639cf4e5a2..a30b42c3ac3b 100644 --- a/drivers/clocksource/clksrc-of.c +++ b/drivers/clocksource/clksrc-of.c | |||
| @@ -28,6 +28,7 @@ void __init clocksource_of_init(void) | |||
| 28 | struct device_node *np; | 28 | struct device_node *np; |
| 29 | const struct of_device_id *match; | 29 | const struct of_device_id *match; |
| 30 | clocksource_of_init_fn init_func; | 30 | clocksource_of_init_fn init_func; |
| 31 | unsigned clocksources = 0; | ||
| 31 | 32 | ||
| 32 | for_each_matching_node_and_match(np, __clksrc_of_table, &match) { | 33 | for_each_matching_node_and_match(np, __clksrc_of_table, &match) { |
| 33 | if (!of_device_is_available(np)) | 34 | if (!of_device_is_available(np)) |
| @@ -36,5 +37,8 @@ void __init clocksource_of_init(void) | |||
| 36 | init_func = match->data; | 37 | init_func = match->data; |
| 37 | init_func(np); | 38 | init_func(np); |
| 38 | of_node_put(np); | 39 | of_node_put(np); |
| 40 | clocksources++; | ||
| 39 | } | 41 | } |
| 42 | if (!clocksources) | ||
| 43 | pr_crit("%s: no matching clocksources found\n", __func__); | ||
| 40 | } | 44 | } |
