Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Advanced Linux Sound Architecture - ALSA - Driver |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 4 | * Copyright (c) 1994-2003 by Jaroslav Kysela <perex@perex.cz>, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Abramo Bagnara <abramo@alsa-project.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #ifndef __SOUND_ASOUND_H |
| 8 | #define __SOUND_ASOUND_H |
| 9 | |
Takashi Iwai | 6560c34 | 2005-11-17 10:29:33 +0100 | [diff] [blame] | 10 | #include <linux/ioctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/time.h> |
| 12 | #include <asm/byteorder.h> |
| 13 | |
| 14 | #ifdef __LITTLE_ENDIAN |
| 15 | #define SNDRV_LITTLE_ENDIAN |
| 16 | #else |
| 17 | #ifdef __BIG_ENDIAN |
| 18 | #define SNDRV_BIG_ENDIAN |
| 19 | #else |
| 20 | #error "Unsupported endian..." |
| 21 | #endif |
| 22 | #endif |
| 23 | |
David Howells | 674e95c | 2012-10-09 09:49:13 +0100 | [diff] [blame] | 24 | #include <uapi/sound/asound.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #endif /* __SOUND_ASOUND_H */ |