From 10227d518c8a967e5cc552d24545e0ca2c59f84e Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Fri, 30 Oct 2020 08:36:00 +0100 Subject: 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 --- include/linux/mtd/mtd.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/linux') 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; -- cgit v1.2.3