blob: 78ab1eab083e78f071665a4347b03f153e9a3457 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* cx20442.h -- audio driver for CX20442
*
* Copyright 2009 Janusz Krzysztofik <jkrzyszt@tis.icnet.pl>
*/
#ifndef _CX20442_CODEC_H
#define _CX20442_CODEC_H
struct cx20442_codec {
struct snd_soc_component *component;
bool ready;
};
extern struct tty_ldisc_ops v253_ops;
#endif
|