UAPI: Don't have a #elif clause in a __KERNEL__ guard in linux/soundcard.h

Don't have a #elif clause in a __KERNEL__ guard in linux/soundcard.h to make
parsing easier.

Signed-off-by: David Howells <dhowells@redhat.com>
This commit is contained in:
David Howells
2011-12-13 15:07:49 +00:00
parent 989e986f5b
commit fdc29805bd

View File

@@ -198,7 +198,8 @@ typedef struct seq_event_rec {
# else # else
# error "could not determine byte order" # error "could not determine byte order"
# endif # endif
#elif defined(__BYTE_ORDER) #else
# if defined(__BYTE_ORDER)
# if __BYTE_ORDER == __BIG_ENDIAN # if __BYTE_ORDER == __BIG_ENDIAN
# define AFMT_S16_NE AFMT_S16_BE # define AFMT_S16_NE AFMT_S16_BE
# elif __BYTE_ORDER == __LITTLE_ENDIAN # elif __BYTE_ORDER == __LITTLE_ENDIAN
@@ -207,6 +208,7 @@ typedef struct seq_event_rec {
# error "could not determine byte order" # error "could not determine byte order"
# endif # endif
# endif # endif
#endif
/* /*
* Sample loading mechanism for internal synthesizers (/dev/sequencer) * Sample loading mechanism for internal synthesizers (/dev/sequencer)