diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-06-14 08:00:18 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-06-14 08:02:38 +0300 |
commit | f8925c17b43d84cb6f56106e4ee2e10ee16b1a2a (patch) | |
tree | fbae585bec988f0190461de2ca42c3402c3b4dc1 /ubi-utils/src/libubi.c | |
parent | 772f5e08faa9d2b5677aa6e01fce06860186a49f (diff) |
libubi: remove few fields from volume info
Remove the 'dev_major' and 'dev_minor' fields from the volume
information structure, because these fields should be provided
by the device information structure.
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/src/libubi.c')
-rw-r--r-- | ubi-utils/src/libubi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ubi-utils/src/libubi.c b/ubi-utils/src/libubi.c index 2f19bd7..100f557 100644 --- a/ubi-utils/src/libubi.c +++ b/ubi-utils/src/libubi.c @@ -1249,8 +1249,6 @@ int ubi_get_vol_info1(libubi_t desc, int dev_num, int vol_id, info->dev_num = dev_num; info->vol_id = vol_id; - if (dev_get_major(lib, dev_num, &info->dev_major, &info->dev_minor)) - return -1; if (vol_get_major(lib, dev_num, vol_id, &info->major, &info->minor)) return -1; |