mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
The divider_round_rate() function is now deprecated, so let's migrate
to divider_determine_rate() instead so that this deprecated API can be
removed. Additionally, owl_divider_helper_round_rate() is no longer used,
so let's drop that from the header file as well.
Note that when the main function itself was migrated to use
determine_rate, this was mistakenly converted to:
req->rate = divider_round_rate(...)
This is invalid in the case when an error occurs since it can set the
rate to a negative value.
Fixes:
|
||
|---|---|---|
| .. | ||
| Kconfig | ||
| Makefile | ||
| owl-common.c | ||
| owl-common.h | ||
| owl-composite.c | ||
| owl-composite.h | ||
| owl-divider.c | ||
| owl-divider.h | ||
| owl-factor.c | ||
| owl-factor.h | ||
| owl-fixed-factor.h | ||
| owl-gate.c | ||
| owl-gate.h | ||
| owl-mux.c | ||
| owl-mux.h | ||
| owl-pll.c | ||
| owl-pll.h | ||
| owl-reset.c | ||
| owl-reset.h | ||
| owl-s500.c | ||
| owl-s700.c | ||
| owl-s900.c | ||