2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-16 17:23:55 +08:00

mtd: mtd in mtd_release is unused without CONFIG_MTD_CHAR

drivers/mtd/mtdcore.c: In function 'mtd_release':
drivers/mtd/mtdcore.c:51: warning: unused variable 'mtd'

[akpm: make it actually build]
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
Denis V. Lunev 2009-04-12 08:14:46 +01:00 committed by David Woodhouse
parent 0882e8dd3a
commit 2fdb11449c

View File

@ -48,11 +48,11 @@ static LIST_HEAD(mtd_notifiers);
*/ */
static void mtd_release(struct device *dev) static void mtd_release(struct device *dev)
{ {
struct mtd_info *mtd = dev_to_mtd(dev); dev_t index = MTD_DEVT(dev_to_mtd(dev)->index);
/* remove /dev/mtdXro node if needed */ /* remove /dev/mtdXro node if needed */
if (MTD_DEVT(mtd->index)) if (index)
device_destroy(mtd_class, MTD_DEVT(mtd->index) + 1); device_destroy(mtd_class, index + 1);
} }
static ssize_t mtd_type_show(struct device *dev, static ssize_t mtd_type_show(struct device *dev,