LinuxPPC-Dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ppc iomem annotations: mv643xx_eth
@ 2005-04-25  6:04 Al Viro
  0 siblings, 0 replies; only message in thread
From: Al Viro @ 2005-04-25  6:04 UTC (permalink / raw)
  To: torvalds; +Cc: linuxppc-dev

	void * __iomem replaced with intended void __iomem *.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
----
diff -urN RC12-rc3-ppc-signal/drivers/net/mv643xx_eth.c RC12-rc3-mveth/drivers/net/mv643xx_eth.c
--- RC12-rc3-ppc-signal/drivers/net/mv643xx_eth.c	Wed Apr 20 21:25:38 2005
+++ RC12-rc3-mveth/drivers/net/mv643xx_eth.c	Mon Apr 25 01:36:36 2005
@@ -99,7 +99,7 @@
 
 static inline u32 mv_read(int offset)
 {
-	void *__iomem reg_base;
+	void __iomem *reg_base;
 
 	reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS;
 
@@ -108,7 +108,7 @@
 
 static inline void mv_write(int offset, u32 data)
 {
-	void * __iomem reg_base;
+	void __iomem *reg_base;
 
 	reg_base = mv643xx_eth_shared_base - MV643XX_ETH_SHARED_REGS;
 	writel(data, reg_base + offset);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2005-04-25  6:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-25  6:04 [PATCH] ppc iomem annotations: mv643xx_eth Al Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox