aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/mtdcore.c
diff options
context:
space:
mode:
authorArtem Bityutskiy <dedekind@infradead.org>2006-10-11 07:52:47 -0400
committerArtem Bityutskiy <dedekind@infradead.org>2006-11-29 10:06:38 -0500
commit9c74034f8fc5d93fbe5656421cbbdc4c76ddda28 (patch)
treee5a205e124c0e42899743d765598f82a228156c2 /drivers/mtd/mtdcore.c
parent9fe912cea32aec18f860c95e8574410b5892481b (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/mtdcore.c')
-rw-r--r--drivers/mtd/mtdcore.c24
1 files changed, 13 insertions, 11 deletions
diff --git a/drivers/mtd/mtdcore.c b/drivers/mtd/mtdcore.c
index f11f55f02413..60f237f91bb2 100644
--- a/drivers/mtd/mtdcore.c
+++ b/drivers/mtd/mtdcore.c
@@ -193,14 +193,14 @@ int unregister_mtd_user (struct mtd_notifier *old)
193 * Given a number and NULL address, return the num'th entry in the device 193 * Given a number and NULL address, return the num'th entry in the device
194 * table, if any. Given an address and num == -1, search the device table 194 * table, if any. Given an address and num == -1, search the device table
195 * for a device with that address and return if it's still present. Given 195 * for a device with that address and return if it's still present. Given
196 * both, return the num'th driver only if its address matches. Return NULL 196 * both, return the num'th driver only if its address matches. Return
197 * if not. 197 * error code if not.
198 */ 198 */
199 199
200struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num) 200struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
201{ 201{
202 struct mtd_info *ret = NULL; 202 struct mtd_info *ret = NULL;
203 int i; 203 int i, err = -ENODEV;
204 204
205 mutex_lock(&mtd_table_mutex); 205 mutex_lock(&mtd_table_mutex);
206 206
@@ -217,22 +217,24 @@ struct mtd_info *get_mtd_device(struct mtd_info *mtd, int num)
217 if (!ret) 217 if (!ret)
218 goto out_unlock; 218 goto out_unlock;
219 219
220 if (!try_module_get(ret->owner)) { 220 if (!try_module_get(ret->owner))
221 ret = NULL;
222 goto out_unlock; 221 goto out_unlock;
223 }
224 222
225 if (ret->get_device && ret->get_device(ret)) { 223 if (ret->get_device) {
226 module_put(ret->owner); 224 err = ret->get_device(ret);
227 ret = NULL; 225 if (err)
228 goto out_unlock; 226 goto out_put;
229 } 227 }
230 228
231 ret->usecount++; 229 ret->usecount++;
230 mutex_unlock(&mtd_table_mutex);
231 return ret;
232 232
233out_put:
234 module_put(ret->owner);
233out_unlock: 235out_unlock:
234 mutex_unlock(&mtd_table_mutex); 236 mutex_unlock(&mtd_table_mutex);
235 return ret; 237 return ERR_PTR(err);
236} 238}
237 239
238/** 240/**