public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH 5/9] mtd: Allow dynamic major/minor number for mtd block devices
@ 2007-03-02 15:54 Richard Purdie
  0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2007-03-02 15:54 UTC (permalink / raw)
  To: Nick Piggin, Hugh Dickins, kernel list, linux-mtd,
	David Woodhouse

Allow mtd block devices to have a dynamically allocated major/minor 
numbers if tr->major == 0.

Signed-off-by: Richard Purdie <rpurdie@openedhand.com>

---
 drivers/mtd/mtd_blkdevs.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Index: linux/drivers/mtd/mtd_blkdevs.c
===================================================================
--- linux.orig/drivers/mtd/mtd_blkdevs.c	2007-02-28 18:16:52.000000000 +0000
+++ linux/drivers/mtd/mtd_blkdevs.c	2007-03-02 14:46:29.000000000 +0000
@@ -380,13 +380,16 @@ int register_mtd_blktrans(struct mtd_blk
 	mutex_lock(&mtd_table_mutex);
 
 	ret = register_blkdev(tr->major, tr->name);
-	if (ret) {
+	if (ret < 0) {
 		printk(KERN_WARNING "Unable to register %s block device on major %d: %d\n",
 		       tr->name, tr->major, ret);
 		kfree(tr->blkcore_priv);
 		mutex_unlock(&mtd_table_mutex);
 		return ret;
 	}
+	if (!tr->major)
+		tr->major = ret;
+
 	spin_lock_init(&tr->blkcore_priv->queue_lock);
 	init_completion(&tr->blkcore_priv->thread_dead);
 	init_waitqueue_head(&tr->blkcore_priv->thread_wq);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-03-02 15:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-02 15:54 [PATCH 5/9] mtd: Allow dynamic major/minor number for mtd block devices Richard Purdie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox