From: Brian Norris Date: Tue, 25 Jul 2017 00:00:46 +0000 (-0700) Subject: mtd: mtdswap: remove unused variables 'dev' and 'gd' X-Git-Tag: v4.14-rc1~73^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1fbef470f3691a4a8afc4937c4ad1901e42901c4;p=platform%2Fkernel%2Flinux-rpi.git mtd: mtdswap: remove unused variables 'dev' and 'gd' This was changed recently (commit e8e3edb95ce6 ("mtd: create per-device and module-scope debugfs entries")) and some compilers are complaining: drivers//mtd/mtdswap.c: In function 'mtdswap_add_debugfs': >> drivers//mtd/mtdswap.c:1317: warning: unused variable 'dev' And once we kill 'dev', 'gd' is also unused. Cc: Mario J. Rugiero Signed-off-by: Brian Norris --- diff --git a/drivers/mtd/mtdswap.c b/drivers/mtd/mtdswap.c index 6b17932..7d9080e 100644 --- a/drivers/mtd/mtdswap.c +++ b/drivers/mtd/mtdswap.c @@ -1313,9 +1313,6 @@ static const struct file_operations mtdswap_fops = { static int mtdswap_add_debugfs(struct mtdswap_dev *d) { - struct gendisk *gd = d->mbd_dev->disk; - struct device *dev = disk_to_dev(gd); - struct dentry *root = d->mtd->dbg.dfs_dir; struct dentry *dent;