aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2007-01-30 10:45:55 +0200
committerDavid Woodhouse <dwmw2@infradead.org>2007-02-09 15:26:37 +0000
commitd416085572eb6a44fd2cf29fd7aed83ffc95fd88 (patch)
treeaf94b7823ede57c0590c6ea42b6e94e037ecab41 /include
parent992c9d24c417afce9792da18f8e664c6b9802c5c (diff)
downloadkernel_samsung_smdk4412-d416085572eb6a44fd2cf29fd7aed83ffc95fd88.zip
kernel_samsung_smdk4412-d416085572eb6a44fd2cf29fd7aed83ffc95fd88.tar.gz
kernel_samsung_smdk4412-d416085572eb6a44fd2cf29fd7aed83ffc95fd88.tar.bz2
[MTD] [NOR] Intel: remove ugly PROGREGION macros
Remove ugly and weird MTD_PROGREGION_CTRLMODE_VALID() and MTD_PROGREGION_CTRLMODE_INVALID() macros. There is only one user of them and they are used locally just for printing. Anyway, this patch is a preparation for removing mtd->ecctype and mtd->eccsize, but these macros use them. Fix this. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mtd/mtd.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h
index d644e57..afab253 100644
--- a/include/linux/mtd/mtd.h
+++ b/include/linux/mtd/mtd.h
@@ -120,16 +120,6 @@ struct mtd_info {
u_int32_t ecctype;
u_int32_t eccsize;
- /*
- * Reuse some of the above unused fields in the case of NOR flash
- * with configurable programming regions to avoid modifying the
- * user visible structure layout/size. Only valid when the
- * MTD_PROGRAM_REGIONS flag is set.
- * (Maybe we should have an union for those?)
- */
-#define MTD_PROGREGION_CTRLMODE_VALID(mtd) (mtd)->oobsize
-#define MTD_PROGREGION_CTRLMODE_INVALID(mtd) (mtd)->ecctype
-
// Kernel-only stuff starts here.
char *name;
int index;