[PATCH] devfs-core: return new cdev also for mtd partitions

Sascha Hauer s.hauer at pengutronix.de
Wed Apr 9 13:28:01 PDT 2014


__devfs_add_partition returns the newly created cdev, but in case
of mtd partitions it accidently returns 0. Fix this.

Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
 fs/devfs-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/devfs-core.c b/fs/devfs-core.c
index eafdc87..455b21a 100644
--- a/fs/devfs-core.c
+++ b/fs/devfs-core.c
@@ -303,7 +303,7 @@ static struct cdev *__devfs_add_partition(struct cdev *cdev,
 				partinfo->flags, partinfo->name);
 		if (IS_ERR(mtd))
 			return (void *)mtd;
-		return 0;
+		return &mtd->cdev;
 	}
 
 	new = xzalloc(sizeof(*new));
-- 
1.9.1




More information about the barebox mailing list