diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-29 03:06:32 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:26:16 -0500 |
commit | b6de3d6cb63427178c4f1df88b81d1ceee637e6f (patch) | |
tree | 9e84f24ac14305246c6f38e885edbc9f48dfc089 /drivers/mtd | |
parent | 87e858a97e8a7010aedc01db7cd31cc7c02b0b6a (diff) |
mtd: do not use mtd->read_*_prot_reg directly
Instead, call 'mtd_read_*_prot_info()' and check for -EOPNOTSUPP.
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/mtdchar.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c index 49340dc1b107..4e8e5fbc1e13 100644 --- a/drivers/mtd/mtdchar.c +++ b/drivers/mtd/mtdchar.c | |||
@@ -366,20 +366,22 @@ static void mtdchar_erase_callback (struct erase_info *instr) | |||
366 | static int otp_select_filemode(struct mtd_file_info *mfi, int mode) | 366 | static int otp_select_filemode(struct mtd_file_info *mfi, int mode) |
367 | { | 367 | { |
368 | struct mtd_info *mtd = mfi->mtd; | 368 | struct mtd_info *mtd = mfi->mtd; |
369 | size_t retlen; | ||
369 | int ret = 0; | 370 | int ret = 0; |
370 | 371 | ||
372 | /* | ||
373 | * Make a fake call to mtd_read_fact_prot_reg() to check if OTP | ||
374 | * operations are supported. | ||
375 | */ | ||
376 | if (mtd_read_fact_prot_reg(mtd, -1, -1, &retlen, NULL) == -EOPNOTSUPP) | ||
377 | return -EOPNOTSUPP; | ||
378 | |||
371 | switch (mode) { | 379 | switch (mode) { |
372 | case MTD_OTP_FACTORY: | 380 | case MTD_OTP_FACTORY: |
373 | if (!mtd->read_fact_prot_reg) | 381 | mfi->mode = MTD_FILE_MODE_OTP_FACTORY; |
374 | ret = -EOPNOTSUPP; | ||
375 | else | ||
376 | mfi->mode = MTD_FILE_MODE_OTP_FACTORY; | ||
377 | break; | 382 | break; |
378 | case MTD_OTP_USER: | 383 | case MTD_OTP_USER: |
379 | if (!mtd->read_fact_prot_reg) | 384 | mfi->mode = MTD_FILE_MODE_OTP_USER; |
380 | ret = -EOPNOTSUPP; | ||
381 | else | ||
382 | mfi->mode = MTD_FILE_MODE_OTP_USER; | ||
383 | break; | 385 | break; |
384 | default: | 386 | default: |
385 | ret = -EINVAL; | 387 | ret = -EINVAL; |