]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
mtd/nand/fsl_upm: Replace the dangerous to_fsl_upm_nand macro
authorFerenc Wagner <wferi@niif.hu>
Tue, 23 Mar 2010 17:08:16 +0000 (18:08 +0100)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Mon, 10 May 2010 13:18:28 +0000 (14:18 +0100)
The original macro worked only when applied to variables named 'mtd'.
While this could have been fixed by simply renaming the macro argument,
a more type-safe replacement is preferred.

Signed-off-by: Ferenc Wagner <wferi@niif.hu>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
drivers/mtd/nand/fsl_upm.c

index d721ec055cbfd7493038a9dde4bfc6143c28082a..b4e2ba47d7b5b5bdea23b2e76cf62ff21e3f53ea 100644 (file)
@@ -48,7 +48,10 @@ struct fsl_upm_nand {
        uint32_t wait_flags;
 };
 
-#define to_fsl_upm_nand(mtd) container_of(mtd, struct fsl_upm_nand, mtd)
+static inline struct fsl_upm_nand *to_fsl_upm_nand(struct mtd_info *mtdinfo)
+{
+       return container_of(mtdinfo, struct fsl_upm_nand, mtd);
+}
 
 static int fun_chip_ready(struct mtd_info *mtd)
 {