26 lines
657 B
C
26 lines
657 B
C
/*
|
|
* sound\soc\sunxi\hifi-dsp\sunxi-snddmic.h
|
|
*
|
|
* (C) Copyright 2019-2025
|
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
|
* yumingfeng <yumingfeng@allwinertech.com>
|
|
*
|
|
* some simple description for this code
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
*/
|
|
|
|
#ifndef __SUNXI_HIFI_SNDDMIC_H_
|
|
#define __SUNXI_HIFI_SNDDMIC_H_
|
|
|
|
struct sunxi_snddmic_priv {
|
|
struct snd_soc_card *card;
|
|
struct platform_device *codec_device;
|
|
};
|
|
|
|
#endif
|