26 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * Advanced Linux Sound Architecture - ALSA - Driver4 * Copyright (c) 1994-2003 by Jaroslav Kysela <perex@perex.cz>,5 * Abramo Bagnara <abramo@alsa-project.org>6 */7#ifndef __SOUND_ASOUND_H8#define __SOUND_ASOUND_H9 10#include <linux/ioctl.h>11#include <linux/time.h>12#include <asm/byteorder.h>13 14#ifdef __LITTLE_ENDIAN15#define SNDRV_LITTLE_ENDIAN16#else17#ifdef __BIG_ENDIAN18#define SNDRV_BIG_ENDIAN19#else20#error "Unsupported endian..."21#endif22#endif23 24#include <uapi/sound/asound.h>25#endif /* __SOUND_ASOUND_H */26