es705-cdev.h 626 B

1234567891011121314151617181920212223
  1. /*
  2. * es705-cdev.h -- Audience eS705 character device interface.
  3. *
  4. * Copyright 2013 Audience, Inc.
  5. *
  6. * Author: Marc Butler <mbutler@audience.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #ifndef _ES705_CDEV_H
  13. #define _ES705_CDEV_H
  14. /* This interface is used to support development and deployment
  15. * tasks. It does not replace ALSA as a controll interface.
  16. */
  17. int es705_init_cdev(struct es705_priv *es705);
  18. void es705_cleanup_cdev(struct es705_priv *es705);
  19. #endif