diff options
Diffstat (limited to 'drivers/mtd/mtdchar.c')
-rw-r--r-- | drivers/mtd/mtdchar.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mtd/mtdchar.c b/drivers/mtd/mtdchar.c index 7c4adc641328..3013d0883b97 100644 --- a/drivers/mtd/mtdchar.c +++ b/drivers/mtd/mtdchar.c | |||
@@ -7,6 +7,7 @@ | |||
7 | 7 | ||
8 | #include <linux/device.h> | 8 | #include <linux/device.h> |
9 | #include <linux/fs.h> | 9 | #include <linux/fs.h> |
10 | #include <linux/err.h> | ||
10 | #include <linux/init.h> | 11 | #include <linux/init.h> |
11 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
12 | #include <linux/module.h> | 13 | #include <linux/module.h> |
@@ -100,8 +101,8 @@ static int mtd_open(struct inode *inode, struct file *file) | |||
100 | 101 | ||
101 | mtd = get_mtd_device(NULL, devnum); | 102 | mtd = get_mtd_device(NULL, devnum); |
102 | 103 | ||
103 | if (!mtd) | 104 | if (IS_ERR(mtd)) |
104 | return -ENODEV; | 105 | return PTR_ERR(mtd); |
105 | 106 | ||
106 | if (MTD_ABSENT == mtd->type) { | 107 | if (MTD_ABSENT == mtd->type) { |
107 | put_mtd_device(mtd); | 108 | put_mtd_device(mtd); |