diff options
author | Ferenc Wagner <wferi@niif.hu> | 2010-03-23 13:08:16 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2010-05-10 09:18:28 -0400 |
commit | b92b5c41a05b69f56e3d5e92dce3dbb5f5f5cf81 (patch) | |
tree | 7a15134bffaac57055c731ba68290ba248f7e244 /drivers/mtd | |
parent | 4a70b7d3953c279738a094d2e5ffe7c66b15a5d0 (diff) |
mtd/nand/fsl_upm: Replace the dangerous to_fsl_upm_nand macro
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>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/fsl_upm.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c index d721ec055cbf..b4e2ba47d7b5 100644 --- a/drivers/mtd/nand/fsl_upm.c +++ b/drivers/mtd/nand/fsl_upm.c | |||
@@ -48,7 +48,10 @@ struct fsl_upm_nand { | |||
48 | uint32_t wait_flags; | 48 | uint32_t wait_flags; |
49 | }; | 49 | }; |
50 | 50 | ||
51 | #define to_fsl_upm_nand(mtd) container_of(mtd, struct fsl_upm_nand, mtd) | 51 | static inline struct fsl_upm_nand *to_fsl_upm_nand(struct mtd_info *mtdinfo) |
52 | { | ||
53 | return container_of(mtdinfo, struct fsl_upm_nand, mtd); | ||
54 | } | ||
52 | 55 | ||
53 | static int fun_chip_ready(struct mtd_info *mtd) | 56 | static int fun_chip_ready(struct mtd_info *mtd) |
54 | { | 57 | { |