From: David Howells Date: Tue, 13 Dec 2011 15:07:49 +0000 (+0000) Subject: UAPI: Don't have a #elif clause in a __KERNEL__ guard in linux/soundcard.h X-Git-Tag: upstream/snapshot3+hdmi~8324^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fdc29805bd7cae133303045fc0249d76f3827613;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git 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 --- diff --git a/include/linux/soundcard.h b/include/linux/soundcard.h index fe204fe..dfcf86f 100644 --- a/include/linux/soundcard.h +++ b/include/linux/soundcard.h @@ -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 /*