diff options
author | Daniel Golle <daniel@makrotopia.org> | 2022-12-22 20:33:31 +0100 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2023-02-13 22:24:10 +0100 |
commit | 05b8773ca33253ea562be145cf3145b05ef19f86 (patch) | |
tree | 523b06d92969f2f7efe488d3458909a1788d2af8 /include | |
parent | mtd: ubi: wire-up parent MTD device (diff) | |
download | linux-05b8773ca33253ea562be145cf3145b05ef19f86.tar.xz linux-05b8773ca33253ea562be145cf3145b05ef19f86.zip |
mtd: ubi: block: wire-up device parent
ubiblock devices were previously only identifyable by their name, but
not connected to their parent UBI volume device e.g. in sysfs.
Properly parent ubiblock device as descendant of a UBI volume device
to reflect device model hierachy.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mtd/ubi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mtd/ubi.h b/include/linux/mtd/ubi.h index 7d48ea368c5e..a529347fd75b 100644 --- a/include/linux/mtd/ubi.h +++ b/include/linux/mtd/ubi.h @@ -110,6 +110,7 @@ struct ubi_volume_info { int name_len; const char *name; dev_t cdev; + struct device *dev; }; /** |