#ifndef __TOOLS_KALLSYMS_H_ #define __TOOLS_KALLSYMS_H_ 1 #include #include #include #ifndef KSYM_NAME_LEN #define KSYM_NAME_LEN 256 #endif static inline u8 kallsyms2elf_binding(char type) { if (type == 'W') return STB_WEAK; return isupper(type) ? STB_GLOBAL : STB_LOCAL; } u8 kallsyms2elf_type(char type); int kallsyms__parse(const char *filename, void *arg, int (*process_symbol)(void *arg, const char *name, char type, u64 start)); #endif /* __TOOLS_KALLSYMS_H_ */ t.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBard Liao <bardliao@realtek.com>2016-12-27 12:05:05 +0800
committerMark Brown <broonie@kernel.org>2017-01-09 11:57:27 +0000
commit02c5c03283c52157d336abf5e44ffcda10579fbf (patch)
tree010f85b25b0fd239fa2b7e6d9549241b0b1f1213 /include/trace/events
parenta5de5b74a50113564a1e0850e2da96c37c35e55d (diff)
ASoC: rt5645: set sel_i2s_pre_div1 to 2
The i2s clock pre-divider 1 is used for both i2s1 and sysclk. The i2s1 is usually used for the main i2s and the pre-divider will be set in hw_params function. However, if i2s2 is used, the pre-divider is not set in the hw_params function and the default value of i2s clock pre-divider 1 is too high for sysclk and DMIC usage. Fix by overriding default divider value to 2. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=95681 Tested-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Signed-off-by: Bard Liao <bardliao@realtek.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/trace/events')