diff options
Diffstat (limited to '')
-rw-r--r-- | include/sound/wm0010.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/sound/wm0010.h b/include/sound/wm0010.h new file mode 100644 index 000000000..13b473935 --- /dev/null +++ b/include/sound/wm0010.h @@ -0,0 +1,23 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * wm0010.h -- Platform data for WM0010 DSP Driver + * + * Copyright 2012 Wolfson Microelectronics PLC. + * + * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com> + */ + +#ifndef WM0010_PDATA_H +#define WM0010_PDATA_H + +struct wm0010_pdata { + int gpio_reset; + + /* Set if there is an inverter between the GPIO controlling + * the reset signal and the device. + */ + int reset_active_high; + int irq_flags; +}; + +#endif |