wm0010.h 466 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * wm0010.h -- Platform data for WM0010 DSP Driver
  4. *
  5. * Copyright 2012 Wolfson Microelectronics PLC.
  6. *
  7. * Author: Dimitris Papastamos <[email protected]>
  8. */
  9. #ifndef WM0010_PDATA_H
  10. #define WM0010_PDATA_H
  11. struct wm0010_pdata {
  12. int gpio_reset;
  13. /* Set if there is an inverter between the GPIO controlling
  14. * the reset signal and the device.
  15. */
  16. int reset_active_high;
  17. int irq_flags;
  18. };
  19. #endif