sh_dac_audio.h 441 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * SH_DAC specific configuration, for the dac_audio platform_device
  4. *
  5. * Copyright (C) 2009 Rafael Ignacio Zurita <rizurita@yahoo.com>
  6. */
  7. #ifndef __INCLUDE_SH_DAC_AUDIO_H
  8. #define __INCLUDE_SH_DAC_AUDIO_H
  9. struct dac_audio_pdata {
  10. int buffer_size;
  11. int channel;
  12. void (*start)(struct dac_audio_pdata *pd);
  13. void (*stop)(struct dac_audio_pdata *pd);
  14. };
  15. #endif /* __INCLUDE_SH_DAC_AUDIO_H */