Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0-or-later */
0002 /*
0003  *  Advanced Linux Sound Architecture - ALSA - Driver
0004  *  Copyright (c) 1994-2003 by Jaroslav Kysela <perex@perex.cz>,
0005  *                             Abramo Bagnara <abramo@alsa-project.org>
0006  */
0007 #ifndef __SOUND_ASOUND_H
0008 #define __SOUND_ASOUND_H
0009 
0010 #include <linux/ioctl.h>
0011 #include <linux/time.h>
0012 #include <asm/byteorder.h>
0013 
0014 #ifdef  __LITTLE_ENDIAN
0015 #define SNDRV_LITTLE_ENDIAN
0016 #else
0017 #ifdef __BIG_ENDIAN
0018 #define SNDRV_BIG_ENDIAN
0019 #else
0020 #error "Unsupported endian..."
0021 #endif
0022 #endif
0023 
0024 #include <uapi/sound/asound.h>
0025 #endif /* __SOUND_ASOUND_H */