counters: Remove deprecated APIs

Remove support for counter_read and counter_get_max_relative_alarm as
they have been deprecated for at least 2 releases.  As part of the
removal of counter_get_max_relative_alarm remove the code in all
counter drivers that implemented the API.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2021-03-17 10:28:12 -05:00 committed by Anas Nashif
commit 607469616d
18 changed files with 2 additions and 151 deletions

View file

@ -1281,11 +1281,6 @@ static int ds3231_counter_set_top_value(const struct device *dev,
return -ENOTSUP;
}
static uint32_t ds3231_counter_get_max_relative_alarm(const struct device *dev)
{
return UINT32_MAX;
}
static const struct counter_driver_api ds3231_api = {
.start = ds3231_counter_start,
.stop = ds3231_counter_stop,
@ -1295,7 +1290,6 @@ static const struct counter_driver_api ds3231_api = {
.set_top_value = ds3231_counter_set_top_value,
.get_pending_int = ds3231_counter_get_pending_int,
.get_top_value = ds3231_counter_get_top_value,
.get_max_relative_alarm = ds3231_counter_get_max_relative_alarm,
};
static const struct ds3231_config ds3231_0_config = {