aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2011-12-29 03:39:20 -0500
committerDavid Woodhouse <David.Woodhouse@intel.com>2012-01-09 13:26:17 -0500
commit27c151a5e52efaa46d0938984f2ef591bdcb6d5b (patch)
tree67866c01422a4f0c99192b0bc2db8f1968cd1f5b /drivers
parentb6de3d6cb63427178c4f1df88b81d1ceee637e6f (diff)
mtd: mtd->write_user_prot_reg directly
Instead, just call 'mtd_write_user_prot_reg()' and check the '-EOPNOTSUPP' return code. Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/mtdchar.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c
index 4e8e5fbc1e1..25bbbc3aa66 100644
--- a/drivers/mtd/mtdchar.c
+++ b/drivers/mtd/mtdchar.c
@@ -310,10 +310,6 @@ static ssize_t mtdchar_write(struct file *file, const char __user *buf, size_t c
310 ret = -EROFS; 310 ret = -EROFS;
311 break; 311 break;
312 case MTD_FILE_MODE_OTP_USER: 312 case MTD_FILE_MODE_OTP_USER:
313 if (!mtd->write_user_prot_reg) {
314 ret = -EOPNOTSUPP;
315 break;
316 }
317 ret = mtd_write_user_prot_reg(mtd, *ppos, len, 313 ret = mtd_write_user_prot_reg(mtd, *ppos, len,
318 &retlen, kbuf); 314 &retlen, kbuf);
319 break; 315 break;