projects
/
GitHub
/
MotorolaMobilityLLC
/
kernel-slsi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d670b2
)
microblaze: Fix out_le32() macro
author
Steven J. Magnani
<steve@digidescorp.com>
Mon, 22 Feb 2010 15:25:42 +0000
(09:25 -0600)
committer
Michal Simek
<monstr@monstr.eu>
Wed, 24 Feb 2010 12:18:49 +0000
(13:18 +0100)
Trailing semicolon causes compilation involving out_le32() to fail.
Signed-off-by: Steven J. Magnani <steve@digidescorp.com>
Signed-off-by: Michal Simek <monstr@monstr.eu>
arch/microblaze/include/asm/io.h
patch
|
blob
|
blame
|
history
diff --git
a/arch/microblaze/include/asm/io.h
b/arch/microblaze/include/asm/io.h
index fc9997b73c09de6183f20ceea4631d590c6d4697..267c7c779e537b1be0c475abaca0719170f54b1f 100644
(file)
--- a/
arch/microblaze/include/asm/io.h
+++ b/
arch/microblaze/include/asm/io.h
@@
-217,7
+217,7
@@
static inline void __iomem *__ioremap(phys_addr_t address, unsigned long size,
* Little endian
*/
-#define out_le32(a, v) __raw_writel(__cpu_to_le32(v), (a))
;
+#define out_le32(a, v) __raw_writel(__cpu_to_le32(v), (a))
#define out_le16(a, v) __raw_writew(__cpu_to_le16(v), (a))
#define in_le32(a) __le32_to_cpu(__raw_readl(a))