wm2000.h 479 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/sound/wm2000.h -- Platform data for WM2000
  4. *
  5. * Copyright 2010 Wolfson Microelectronics. PLC.
  6. */
  7. #ifndef __LINUX_SND_WM2000_H
  8. #define __LINUX_SND_WM2000_H
  9. struct wm2000_platform_data {
  10. /** Filename for system-specific image to download to device. */
  11. const char *download_file;
  12. /** Disable speech clarity enhancement, for use when an
  13. * external algorithm is used. */
  14. unsigned int speech_enh_disable:1;
  15. };
  16. #endif