mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 16:12:02 +00:00
997994d7e6
cppcheck warning: sound/soc/codecs/hdac_hdmi.c:1882:54: style:inconclusive: Function 'hdac_hdmi_jack_init' argument 2 names different: declaration 'pcm' definition 'device'. [funcArgNamesDifferent] int hdac_hdmi_jack_init(struct snd_soc_dai *dai, int device, ^ sound/soc/codecs/hdac_hdmi.h:5:54: note: Function 'hdac_hdmi_jack_init' argument 2 names different: declaration 'pcm' definition 'device'. int hdac_hdmi_jack_init(struct snd_soc_dai *dai, int pcm, ^ Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210312182246.5153-10-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
11 lines
316 B
C
11 lines
316 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __HDAC_HDMI_H__
|
|
#define __HDAC_HDMI_H__
|
|
|
|
int hdac_hdmi_jack_init(struct snd_soc_dai *dai, int device,
|
|
struct snd_soc_jack *jack);
|
|
|
|
int hdac_hdmi_jack_port_init(struct snd_soc_component *component,
|
|
struct snd_soc_dapm_context *dapm);
|
|
#endif /* __HDAC_HDMI_H__ */
|