summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2020-10-30 08:36:00 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2020-11-09 13:00:24 +0100
commit10227d518c8a967e5cc552d24545e0ca2c59f84e (patch)
tree8339f75472620aab767f8e6de090df0418800393 /include/linux
parent4d3c779dfcc7a0ae45e957a521307d731d90d742 (diff)
downloadbarebox-10227d518c8a967e5cc552d24545e0ca2c59f84e.tar.gz
barebox-10227d518c8a967e5cc552d24545e0ca2c59f84e.tar.xz
mtd: Use classdev->parent
Instead of mtd->parent we can use mtd->classdev.parent which points to the same device. With this we can remove the 'parent' member of struct mtd_info. This member exists in the Linux kernel as well, but is of type struct mtd_info, so this is done as preparation to re-add mtd->parent with the same type as in Linux. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/mtd/mtd.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h
index 4a14cfd9d0..219a5279cd 100644
--- a/include/linux/mtd/mtd.h
+++ b/include/linux/mtd/mtd.h
@@ -194,7 +194,6 @@ struct mtd_info {
void (*_put_device) (struct mtd_info *mtd);
struct device_d class_dev;
- struct device_d *parent;
struct cdev cdev;
struct cdev *cdev_bb;