wm8955.h 442 B

123456789101112131415161718192021
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Platform data for WM8955
  4. *
  5. * Copyright 2009 Wolfson Microelectronics PLC.
  6. *
  7. * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
  8. */
  9. #ifndef __WM8955_PDATA_H__
  10. #define __WM8955_PDATA_H__
  11. struct wm8955_pdata {
  12. /* Configure LOUT2/ROUT2 to drive a speaker */
  13. unsigned int out2_speaker:1;
  14. /* Configure MONOIN+/- in differential mode */
  15. unsigned int monoin_diff:1;
  16. };
  17. #endif