diff options
-rw-r--r-- | include/linux/mtd/sh_flctl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/mtd/sh_flctl.h b/include/linux/mtd/sh_flctl.h index 178b5c26c995..9cf4c4c79555 100644 --- a/include/linux/mtd/sh_flctl.h +++ b/include/linux/mtd/sh_flctl.h | |||
@@ -93,11 +93,6 @@ | |||
93 | #define INIT_FL4ECCRESULT_VAL 0x03FF03FF | 93 | #define INIT_FL4ECCRESULT_VAL 0x03FF03FF |
94 | #define LOOP_TIMEOUT_MAX 0x00010000 | 94 | #define LOOP_TIMEOUT_MAX 0x00010000 |
95 | 95 | ||
96 | static inline struct sh_flctl *mtd_to_flctl(struct mtd_info *mtdinfo) | ||
97 | { | ||
98 | return container_of(mtdinfo, struct sh_flctl, mtd); | ||
99 | } | ||
100 | |||
101 | struct sh_flctl { | 96 | struct sh_flctl { |
102 | struct mtd_info mtd; | 97 | struct mtd_info mtd; |
103 | struct nand_chip chip; | 98 | struct nand_chip chip; |
@@ -128,4 +123,9 @@ struct sh_flctl_platform_data { | |||
128 | unsigned has_hwecc:1; | 123 | unsigned has_hwecc:1; |
129 | }; | 124 | }; |
130 | 125 | ||
126 | static inline struct sh_flctl *mtd_to_flctl(struct mtd_info *mtdinfo) | ||
127 | { | ||
128 | return container_of(mtdinfo, struct sh_flctl, mtd); | ||
129 | } | ||
130 | |||
131 | #endif /* __SH_FLCTL_H__ */ | 131 | #endif /* __SH_FLCTL_H__ */ |