asound.h 590 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Advanced Linux Sound Architecture - ALSA - Driver
  4. * Copyright (c) 1994-2003 by Jaroslav Kysela <[email protected]>,
  5. * Abramo Bagnara <[email protected]>
  6. */
  7. #ifndef __SOUND_ASOUND_H
  8. #define __SOUND_ASOUND_H
  9. #include <linux/ioctl.h>
  10. #include <linux/time.h>
  11. #include <asm/byteorder.h>
  12. #ifdef __LITTLE_ENDIAN
  13. #define SNDRV_LITTLE_ENDIAN
  14. #else
  15. #ifdef __BIG_ENDIAN
  16. #define SNDRV_BIG_ENDIAN
  17. #else
  18. #error "Unsupported endian..."
  19. #endif
  20. #endif
  21. #include <uapi/sound/asound.h>
  22. #endif /* __SOUND_ASOUND_H */