Commit fa7bfcb7 authored by Deepak Saxena's avatar Deepak Saxena Committed by Russell King

[ARM PATCH] 1732/1: Fix put_unaligned type in BE mode

Patch from Deepak Saxena

put_unaligned is defined as __put_unaligned_be() but we're missing the "__" at the beggining.
parent 8f080d96
...@@ -159,7 +159,7 @@ static inline void __put_unaligned_8_be(const unsigned long long __v, register _ ...@@ -159,7 +159,7 @@ static inline void __put_unaligned_8_be(const unsigned long long __v, register _
(void) 0; \ (void) 0; \
}) })
#define put_unaligned_be(val,ptr) \ #define __put_unaligned_be(val,ptr) \
({ \ ({ \
switch (sizeof(*(ptr))) { \ switch (sizeof(*(ptr))) { \
case 1: \ case 1: \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment