/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* Advanced Linux Sound Architecture - ALSA - Driver3* Copyright (c) 1994-2003 by Jaroslav Kysela <[email protected]>,4* Abramo Bagnara <[email protected]>5*/6#ifndef __SOUND_ASOUND_H7#define __SOUND_ASOUND_H89#include <linux/ioctl.h>10#include <linux/time.h>11#include <asm/byteorder.h>1213#ifdef __LITTLE_ENDIAN14#define SNDRV_LITTLE_ENDIAN15#else16#ifdef __BIG_ENDIAN17#define SNDRV_BIG_ENDIAN18#else19#error "Unsupported endian..."20#endif21#endif2223#include <uapi/sound/asound.h>24#endif /* __SOUND_ASOUND_H */252627