diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-29 04:03:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 11:06:27 -0400 |
commit | 973ea70c7c9be50d5ac34ff82a1c48fbe8fb2efb (patch) | |
tree | 247e411de49b0ec7301e7715e29d27ad741c3590 /drivers/char/rocket_int.h | |
parent | c105068f2b35343eecf2bf16ee29a362b6121fa3 (diff) |
char: use get_unaligned_* helpers
Remove unnecessary temp variable from_buf in snsc_event.c
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Jiri Slaby <jirislaby@gmail.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/rocket_int.h')
-rw-r--r-- | drivers/char/rocket_int.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/rocket_int.h b/drivers/char/rocket_int.h index b01d38125a8f..143cc432fdb2 100644 --- a/drivers/char/rocket_int.h +++ b/drivers/char/rocket_int.h | |||
@@ -55,7 +55,7 @@ static inline void sOutW(unsigned short port, unsigned short value) | |||
55 | 55 | ||
56 | static inline void out32(unsigned short port, Byte_t *p) | 56 | static inline void out32(unsigned short port, Byte_t *p) |
57 | { | 57 | { |
58 | u32 value = le32_to_cpu(get_unaligned((__le32 *)p)); | 58 | u32 value = get_unaligned_le32(p); |
59 | #ifdef ROCKET_DEBUG_IO | 59 | #ifdef ROCKET_DEBUG_IO |
60 | printk(KERN_DEBUG "out32(%x, %lx)...\n", port, value); | 60 | printk(KERN_DEBUG "out32(%x, %lx)...\n", port, value); |
61 | #endif | 61 | #endif |