Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-only */
0002 /*
0003  * linux/sound/wm9081.h -- Platform data for WM9081
0004  *
0005  * Copyright 2009 Wolfson Microelectronics. PLC.
0006  */
0007 
0008 #ifndef __LINUX_SND_WM_9081_H
0009 #define __LINUX_SND_WM_9081_H
0010 
0011 struct wm9081_retune_mobile_setting {
0012     const char *name;
0013     unsigned int rate;
0014     u16 config[20];
0015 };
0016 
0017 struct wm9081_pdata {
0018     bool irq_high;   /* IRQ is active high */
0019     bool irq_cmos;   /* IRQ is in CMOS mode */
0020 
0021     struct wm9081_retune_mobile_setting *retune_configs;
0022     int num_retune_configs;
0023 };
0024 
0025 #endif