linux-stable/sound/soc/codecs/hda.h
Pierre-Louis Bossart 884077bd71
ASoC: codecs: Intel: clarify Copyright information
For some reason a number of files included the "All rights reserved"
statement. Good old copy-paste made sure this mistake proliferated.

Remove the "All rights reserved" in all Intel-copyright to align with
internal guidance.

Acked-by: Cezary Rojewski <cezary.rojewski@intel.com>
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com>
Link: https://lore.kernel.org/r/20240503140359.259762-5-pierre-louis.bossart@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
2024-05-06 23:59:38 +09:00

19 lines
488 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright(c) 2021-2022 Intel Corporation
*
* Author: Cezary Rojewski <cezary.rojewski@intel.com>
*/
#ifndef SND_SOC_CODECS_HDA_H
#define SND_SOC_CODECS_HDA_H
#define hda_codec_is_display(codec) \
((((codec)->core.vendor_id >> 16) & 0xFFFF) == 0x8086)
extern const struct snd_soc_dai_ops snd_soc_hda_codec_dai_ops;
extern const struct hdac_ext_bus_ops soc_hda_ext_bus_ops;
int hda_codec_probe_complete(struct hda_codec *codec);
#endif