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