summaryrefslogtreecommitdiff
path: root/ubi-utils/new-utils/include/libubi.h
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2008-09-02 17:41:47 +0300
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2008-09-02 17:41:47 +0300
commitc0d59ef392816ff9c0bd861d1cdb863a09fd6b1c (patch)
treed3eb46ea10303bd742228cc53b555d2a4a52b2e8 /ubi-utils/new-utils/include/libubi.h
parent214ddd398850d003dcd1943da6a039f324646b5b (diff)
ubi-utils: minor rename
We use term "volume ID", not "volume number". So change few vol_num variables to vol_id to be consistent. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'ubi-utils/new-utils/include/libubi.h')
-rw-r--r--ubi-utils/new-utils/include/libubi.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ubi-utils/new-utils/include/libubi.h b/ubi-utils/new-utils/include/libubi.h
index 0f5c9c8..3010ed4 100644
--- a/ubi-utils/new-utils/include/libubi.h
+++ b/ubi-utils/new-utils/include/libubi.h
@@ -94,8 +94,8 @@ struct ubi_info
/**
* struct ubi_dev_info - UBI device information.
* @vol_count: count of volumes on this UBI device
- * @lowest_vol_num: lowest volume number
- * @highest_vol_num: highest volume number
+ * @lowest_vol_id: lowest volume ID
+ * @highest_vol_id: highest volume ID
* @major: major number of corresponding character device
* @minor: minor number of corresponding character device
* @total_lebs: total number of logical eraseblocks on this UBI device
@@ -115,8 +115,8 @@ struct ubi_dev_info
{
int dev_num;
int vol_count;
- int lowest_vol_num;
- int highest_vol_num;
+ int lowest_vol_id;
+ int highest_vol_id;
int major;
int minor;
int total_lebs;
@@ -331,7 +331,7 @@ int ubi_get_vol_info(libubi_t desc, const char *node,
* @info: pointer to the &struct ubi_vol_info object to fill
*
* This function is identical to 'ubi_get_vol_info()' except that it accepts UBI
- * volume number, not UBI volume character device.
+ * volume ID, not UBI volume character device.
*/
int ubi_get_vol_info1(libubi_t desc, int dev_num, int vol_id,
struct ubi_vol_info *info);