diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-07-10 16:59:36 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-07-15 11:30:55 +0300 |
commit | c8cc452501572d4a81331179b00a9bdd5d2bfada (patch) | |
tree | 8db50707575afe3c36d35a2a5d07c05fe2d58e26 | |
parent | 6847e154e3cd74fca6084124c097980a7634285a (diff) | |
download | linux-3.10-c8cc452501572d4a81331179b00a9bdd5d2bfada.tar.gz linux-3.10-c8cc452501572d4a81331179b00a9bdd5d2bfada.tar.bz2 linux-3.10-c8cc452501572d4a81331179b00a9bdd5d2bfada.zip |
UBI: gluebi: initialize ubi_num field
Do not forget to initialize 'gluebi->ubi_num' because otherwise
it will stay 0 even for ubi1 device, and gluebi will open
wrong UBI device when 'gluebi_get_device()' is called.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r-- | drivers/mtd/ubi/gluebi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/gluebi.c b/drivers/mtd/ubi/gluebi.c index 95aaac03f93..b5e478fa266 100644 --- a/drivers/mtd/ubi/gluebi.c +++ b/drivers/mtd/ubi/gluebi.c @@ -332,6 +332,7 @@ static int gluebi_create(struct ubi_device_info *di, } gluebi->vol_id = vi->vol_id; + gluebi->ubi_num = vi->ubi_num; mtd->type = MTD_UBIVOLUME; if (!di->ro_mode) mtd->flags = MTD_WRITEABLE; |