From 617192a1053a6614c2ad09054e5ee4f517f02308 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Thu, 30 Mar 2017 22:58:19 +0200 Subject: of: partitions: flag partitions from a partition table We are going to call the of_partition_fixup for regular block devices like MMC/SD aswell. Add a flag to partitions indicating they are instanciated from a on-disk partition table so that they won't be added as device tree partitions during fixup. Signed-off-by: Sascha Hauer --- common/partitions.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/partitions.c') diff --git a/common/partitions.c b/common/partitions.c index 69a2b1fefb..574b31fbbe 100644 --- a/common/partitions.c +++ b/common/partitions.c @@ -63,6 +63,8 @@ static int register_one_partition(struct block_device *blk, goto out; } + cdev->flags |= DEVFS_PARTITION_FROM_TABLE; + cdev->dos_partition_type = part->dos_partition_type; strcpy(cdev->partuuid, part->partuuid); -- cgit v1.2.3