diff options
author | Artem Bityutskiy <dedekind@infradead.org> | 2006-10-11 07:52:47 -0400 |
---|---|---|
committer | Artem Bityutskiy <dedekind@infradead.org> | 2006-11-29 10:06:38 -0500 |
commit | 9c74034f8fc5d93fbe5656421cbbdc4c76ddda28 (patch) | |
tree | e5a205e124c0e42899743d765598f82a228156c2 /drivers/mtd/maps | |
parent | 9fe912cea32aec18f860c95e8574410b5892481b (diff) |
[MTD] return error code from get_mtd_device()
get_mtd_device() returns NULL in case of any failure. Teach it to return an
error code instead. Fix all users as well.
Signed-off-by: Artem Bityutskiy <dedekind@infradead.org>
Diffstat (limited to 'drivers/mtd/maps')
-rw-r--r-- | drivers/mtd/maps/nettel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/maps/nettel.c b/drivers/mtd/maps/nettel.c index f9e8e5bcbc33..528e523245c2 100644 --- a/drivers/mtd/maps/nettel.c +++ b/drivers/mtd/maps/nettel.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <linux/mtd/partitions.h> | 20 | #include <linux/mtd/partitions.h> |
21 | #include <linux/mtd/cfi.h> | 21 | #include <linux/mtd/cfi.h> |
22 | #include <linux/reboot.h> | 22 | #include <linux/reboot.h> |
23 | #include <linux/err.h> | ||
23 | #include <linux/kdev_t.h> | 24 | #include <linux/kdev_t.h> |
24 | #include <linux/root_dev.h> | 25 | #include <linux/root_dev.h> |
25 | #include <asm/io.h> | 26 | #include <asm/io.h> |
@@ -178,7 +179,7 @@ int nettel_eraseconfig(void) | |||
178 | 179 | ||
179 | init_waitqueue_head(&wait_q); | 180 | init_waitqueue_head(&wait_q); |
180 | mtd = get_mtd_device(NULL, 2); | 181 | mtd = get_mtd_device(NULL, 2); |
181 | if (mtd) { | 182 | if (!IS_ERR(mtd)) { |
182 | nettel_erase.mtd = mtd; | 183 | nettel_erase.mtd = mtd; |
183 | nettel_erase.callback = nettel_erasecallback; | 184 | nettel_erase.callback = nettel_erasecallback; |
184 | nettel_erase.callback = NULL; | 185 | nettel_erase.callback = NULL; |