mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-27 01:11:31 +00:00
Coldfire still provides its own variant of the clk API rather than using
the generic COMMON_CLK API. This generally works, but it causes some
link errors with drivers using the clk_round_rate(), clk_set_rate(),
clk_set_parent(), or clk_get_parent() functions when a platform lacks
those interfaces.
This adds empty stub implementations for each of them, and I don't even
try to do something useful here but instead just print a WARN() message
to make it obvious what is going on if they ever end up being called.
The drivers that call these won't be used on these platforms (otherwise
we'd get a link error today), so the added code is harmless bloat and
will warn about accidental use.
Based on commit
|
||
|---|---|---|
| .. | ||
| amcore.c | ||
| cache.c | ||
| clk.c | ||
| device.c | ||
| dma.c | ||
| dma_timer.c | ||
| entry.S | ||
| firebee.c | ||
| gpio.c | ||
| head.S | ||
| intc-2.c | ||
| intc-525x.c | ||
| intc-5249.c | ||
| intc-5272.c | ||
| intc-simr.c | ||
| intc.c | ||
| m53xx.c | ||
| m54xx.c | ||
| m520x.c | ||
| m523x.c | ||
| m525x.c | ||
| m527x.c | ||
| m528x.c | ||
| m5206.c | ||
| m5249.c | ||
| m5272.c | ||
| m5307.c | ||
| m5407.c | ||
| m5441x.c | ||
| Makefile | ||
| mcf8390.c | ||
| nettel.c | ||
| pci.c | ||
| pit.c | ||
| reset.c | ||
| sltimers.c | ||
| stmark2.c | ||
| timers.c | ||
| vectors.c | ||