Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  * wm0010.h -- Platform data for WM0010 DSP Driver
0004  *
0005  * Copyright 2012 Wolfson Microelectronics PLC.
0006  *
0007  * Author: Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
0008  */
0009 
0010 #ifndef WM0010_PDATA_H
0011 #define WM0010_PDATA_H
0012 
0013 struct wm0010_pdata {
0014     int gpio_reset;
0015 
0016     /* Set if there is an inverter between the GPIO controlling
0017      * the reset signal and the device.
0018      */
0019     int reset_active_high;
0020     int irq_flags;
0021 };
0022 
0023 #endif