Use kernel.h macro definition.

Thanks to Julia Lawall for Coccinelle scripting support.

Signed-off-by: Fabian Frederick <f...@skynet.be>
---
 drivers/mtd/chips/cfi_cmdset_0002.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/mtd/chips/cfi_cmdset_0002.c 
b/drivers/mtd/chips/cfi_cmdset_0002.c
index c3624eb..9dca881 100644
--- a/drivers/mtd/chips/cfi_cmdset_0002.c
+++ b/drivers/mtd/chips/cfi_cmdset_0002.c
@@ -615,11 +615,9 @@ struct mtd_info *cfi_cmdset_0002(struct map_info *map, int 
primary)
 
                                for (i=0; i<cfi->cfiq->NumEraseRegions / 2; 
i++) {
                                        int j = 
(cfi->cfiq->NumEraseRegions-1)-i;
-                                       __u32 swap;
 
-                                       swap = cfi->cfiq->EraseRegionInfo[i];
-                                       cfi->cfiq->EraseRegionInfo[i] = 
cfi->cfiq->EraseRegionInfo[j];
-                                       cfi->cfiq->EraseRegionInfo[j] = swap;
+                                       swap(cfi->cfiq->EraseRegionInfo[i],
+                                            cfi->cfiq->EraseRegionInfo[j]);
                                }
                        }
                        /* Set the default CFI lock/unlock addresses */
-- 
2.4.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to