Commit b92b5c41 authored by Ferenc Wagner's avatar Ferenc Wagner Committed by David Woodhouse

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: default avatarFerenc Wagner <wferi@niif.hu>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 4a70b7d3
...@@ -48,7 +48,10 @@ struct fsl_upm_nand { ...@@ -48,7 +48,10 @@ struct fsl_upm_nand {
uint32_t wait_flags; 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) static int fun_chip_ready(struct mtd_info *mtd)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment