#ifndef __PERF_VDSO__ #define __PERF_VDSO__ #include #include #include #define VDSO__MAP_NAME "[vdso]" #define DSO__NAME_VDSO "[vdso]" #define DSO__NAME_VDSO32 "[vdso32]" #define DSO__NAME_VDSOX32 "[vdsox32]" static inline bool is_vdso_map(const char *filename) { return !strcmp(filename, VDSO__MAP_NAME); } struct dso; bool dso__is_vdso(struct dso *dso); struct machine; struct thread; struct dso *machine__findnew_vdso(struct machine *machine, struct thread *thread); void machine__exit_vdso(struct machine *machine); #endif /* __PERF_VDSO__ */ eader'> cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
ption value='8'>8
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorRichard Fitzgerald <rf@opensource.wolfsonmicro.com>2016-04-21 14:04:14 +0100
committerMark Brown <broonie@kernel.org>2016-04-21 16:58:38 +0100
commit8e42db1eaab6c2558dbc2e6c1428730df0a295f4 (patch)
tree7625993cf1061fa92fb315dcacc88108e425911b /Documentation
parent43b27d7286737d9af9ebeff0219e38560cb31748 (diff)
ASoC: arizona: Prefer lower FRATIO in pseudo-fractional mode
When setting up an FLL in pseudo-fractional mode it is preferred to use a lower FRATIO if possible to give a higher reference clock frequency. This patch swaps the two loops in arizona_calc_fratio() so that lower FRATIOs are tried first. The decrementing loop is also changed to start from init_ratio because the original settings might already give a fractional value for N.K Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation')