mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 18:41:48 +00:00
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:
parent
989e986f5b
commit
fdc29805bd
@ -198,7 +198,8 @@ typedef struct seq_event_rec {
|
||||
# else
|
||||
# error "could not determine byte order"
|
||||
# endif
|
||||
#elif defined(__BYTE_ORDER)
|
||||
#else
|
||||
# if defined(__BYTE_ORDER)
|
||||
# if __BYTE_ORDER == __BIG_ENDIAN
|
||||
# define AFMT_S16_NE AFMT_S16_BE
|
||||
# elif __BYTE_ORDER == __LITTLE_ENDIAN
|
||||
@ -206,6 +207,7 @@ typedef struct seq_event_rec {
|
||||
# else
|
||||
# error "could not determine byte order"
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user