diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/platform_data/elm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/platform_data/elm.h b/include/linux/platform_data/elm.h index 11ab6aaf2431..1bd5244d1dcd 100644 --- a/include/linux/platform_data/elm.h +++ b/include/linux/platform_data/elm.h | |||
@@ -30,7 +30,8 @@ enum bch_ecc { | |||
30 | #define BCH4_ECC_OOB_BYTES 7 | 30 | #define BCH4_ECC_OOB_BYTES 7 |
31 | /* RBL requires 14 byte even though BCH8 uses only 13 byte */ | 31 | /* RBL requires 14 byte even though BCH8 uses only 13 byte */ |
32 | #define BCH8_SIZE (BCH8_ECC_OOB_BYTES + 1) | 32 | #define BCH8_SIZE (BCH8_ECC_OOB_BYTES + 1) |
33 | #define BCH4_SIZE (BCH4_ECC_OOB_BYTES) | 33 | /* Uses 1 extra byte to handle erased pages */ |
34 | #define BCH4_SIZE (BCH4_ECC_OOB_BYTES + 1) | ||
34 | 35 | ||
35 | /** | 36 | /** |
36 | * struct elm_errorvec - error vector for elm | 37 | * struct elm_errorvec - error vector for elm |