|
@@ -382,11 +382,12 @@ int register_mtd_blktrans(struct mtd_blktrans_ops *tr)
|
|
|
tr->blkcore_priv->thread = kthread_run(mtd_blktrans_thread, tr,
|
|
|
"%sd", tr->name);
|
|
|
if (IS_ERR(tr->blkcore_priv->thread)) {
|
|
|
+ int ret = PTR_ERR(tr->blkcore_priv->thread);
|
|
|
blk_cleanup_queue(tr->blkcore_priv->rq);
|
|
|
unregister_blkdev(tr->major, tr->name);
|
|
|
kfree(tr->blkcore_priv);
|
|
|
mutex_unlock(&mtd_table_mutex);
|
|
|
- return PTR_ERR(tr->blkcore_priv->thread);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
INIT_LIST_HEAD(&tr->devs);
|