Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * linux/sound/wm2000.h -- Platform data for WM2000
0004  *
0005  * Copyright 2010 Wolfson Microelectronics. PLC.
0006  */
0007 
0008 #ifndef __LINUX_SND_WM2000_H
0009 #define __LINUX_SND_WM2000_H
0010 
0011 struct wm2000_platform_data {
0012     /** Filename for system-specific image to download to device. */
0013     const char *download_file;
0014 
0015     /** Disable speech clarity enhancement, for use when an
0016      * external algorithm is used. */
0017     unsigned int speech_enh_disable:1;
0018 };
0019 
0020 #endif