]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
CRIS v32: Rename variable used in macro for arch-v32/hwregs/dma.h
authorJesper Nilsson <jesper.nilsson@axis.com>
Mon, 28 Jan 2008 16:42:17 +0000 (17:42 +0100)
committerJesper Nilsson <jesper.nilsson@axis.com>
Fri, 8 Feb 2008 10:06:38 +0000 (11:06 +0100)
The old name "r" would quite often produce warnings when other
variables with the same name was shadowed. Rename it __x to
make it more unlikely to happen.

include/asm-cris/arch-v32/hwregs/dma.h

index c31832d3d6be2e1da73c11c2ce2c886807e2b80e..3ce322b5c73161839c2d0c410c697bb52448021e 100644 (file)
@@ -1,5 +1,4 @@
-/* $Id: dma.h,v 1.7 2005/04/24 18:30:58 starvik Exp $
- *
+/*
  * DMA C definitions and help macros
  *
  */
@@ -98,11 +97,11 @@ typedef struct dma_descr_data {
 
 // give stream command
 #define DMA_WR_CMD( inst, cmd_par ) \
-   do { reg_dma_rw_stream_cmd r = {0}; \
-        do { r = REG_RD( dma, inst, rw_stream_cmd ); } while( r.busy ); \
-        r.cmd = (cmd_par); \
-        REG_WR( dma, inst, rw_stream_cmd, r ); \
-      } while( 0 )
+   do { reg_dma_rw_stream_cmd __x = {0}; \
+       do { __x = REG_RD(dma, inst, rw_stream_cmd); } while (__x.busy); \
+       __x.cmd = (cmd_par); \
+       REG_WR(dma, inst, rw_stream_cmd, __x); \
+   } while (0)
 
 // load: g,c,d:burst
 #define DMA_START_GROUP( inst, group_descr ) \