[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1266852342-9033-1-git-send-email-steve@digidescorp.com>
Date: Mon, 22 Feb 2010 09:25:42 -0600
From: "Steven J. Magnani" <steve@...idescorp.com>
To: microblaze-uclinux@...e.uq.edu.au
Cc: monstr@...str.eu, linux-kernel@...r.kernel.org,
"Steven J. Magnani" <steve@...idescorp.com>
Subject: [PATCH][trivial] microblaze: Fix out_le32() macro
Trailing semicolon causes compilation involving out_le32() to fail.
Signed-off-by: Steven J. Magnani <steve@...idescorp.com>
diff -uprN a/arch/microblaze/include/asm/io.h b/arch/microblaze/include/asm/io.h
--- a/arch/microblaze/include/asm/io.h 2010-02-22 09:21:14.000000000 -0600
+++ b/arch/microblaze/include/asm/io.h 2010-02-22 09:21:44.000000000 -0600
@@ -217,7 +217,7 @@ static inline void __iomem *__ioremap(ph
* 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))
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists