1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 3 #ifndef _COMMON_HDA_VERB_H_ 4 #define _COMMON_HDA_VERB_H_ 5 6 #include <stdint.h> 7 8 int hda_codec_detect(u8 *base); 9 int hda_codec_write(u8 *base, u32 size, const u32 *data); 10 int hda_codec_init(u8 *base, int addr, int verb_size, const u32 *verb_data); 11 12 #endif /* _COMMON_HDA_VERB_H_ */ 13