summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2009-04-20 13:03:21 +0300
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2009-04-20 16:29:39 +0300
commitfc85dfd76f97387ccddb46861effa6c386901218 (patch)
tree266019e4e57901242c7f84e559a0aa3aa7454652
parentb03c80c7d84e14ab1a28311db4bc7eb08948c569 (diff)
libmtd: rename mtd_get_info
Rename 'mtd_get_info()' into 'mtd_get_dev_info()' to be consistent to libubi. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r--ubi-utils/include/libmtd.h6
-rw-r--r--ubi-utils/src/libmtd.c2
-rw-r--r--ubi-utils/src/ubiformat.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/ubi-utils/include/libmtd.h b/ubi-utils/include/libmtd.h
index 9c7a6e3..f2f4da2 100644
--- a/ubi-utils/include/libmtd.h
+++ b/ubi-utils/include/libmtd.h
@@ -38,7 +38,7 @@ extern "C" {
* @eb_cnt: count of eraseblocks
* @eb_size: eraseblock size
* @min_io_size: minimum input/output unit size
- * @subpage_size: sub-page size (not set by 'mtd_get_info()'!!!)
+ * @subpage_size: sub-page size
* @rdonly: non-zero if the device is read-only
* @allows_bb: non-zero if the MTD device may have bad eraseblocks
*/
@@ -59,7 +59,7 @@ struct mtd_info
};
/**
- * mtd_get_info - get information about an MTD device.
+ * mtd_get_dev_info - get information about an MTD device.
* @node: name of the MTD device node
* @mtd: the MTD device information is returned here
*
@@ -67,7 +67,7 @@ struct mtd_info
* node file and saves this information in the @mtd object. Returns %0 in case
* of success and %-1 in case of failure.
*/
-int mtd_get_info(const char *node, struct mtd_info *mtd);
+int mtd_get_dev_info(const char *node, struct mtd_info *mtd);
/**
* mtd_erase - erase an eraseblock.
diff --git a/ubi-utils/src/libmtd.c b/ubi-utils/src/libmtd.c
index 127d0ec..8403c37 100644
--- a/ubi-utils/src/libmtd.c
+++ b/ubi-utils/src/libmtd.c
@@ -33,7 +33,7 @@
#define PROGRAM_NAME "libmtd"
#define MTD_DEV_MAJOR 90
-int mtd_get_info(const char *node, struct mtd_info *mtd)
+int mtd_get_dev_info(const char *node, struct mtd_info *mtd)
{
struct stat st;
struct mtd_info_user ui;
diff --git a/ubi-utils/src/ubiformat.c b/ubi-utils/src/ubiformat.c
index 1409953..511591a 100644
--- a/ubi-utils/src/ubiformat.c
+++ b/ubi-utils/src/ubiformat.c
@@ -691,7 +691,7 @@ int main(int argc, char * const argv[])
if (err)
return -1;
- err = mtd_get_info(args.node, &mtd);
+ err = mtd_get_dev_info(args.node, &mtd);
if (err)
return errmsg("cannot get information about \"%s\"", args.node);
@@ -726,7 +726,7 @@ int main(int argc, char * const argv[])
}
/*
- * Because of MTD interface limitations 'mtd_get_info()' cannot get
+ * Because of MTD interface limitations 'mtd_get_dev_info()' cannot get
* sub-page so we force the user to pass it via the command line. Let's
* hope the user passed us something sane.
*/