diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-04-20 13:03:21 +0300 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2009-04-20 16:29:39 +0300 |
commit | fc85dfd76f97387ccddb46861effa6c386901218 (patch) | |
tree | 266019e4e57901242c7f84e559a0aa3aa7454652 /ubi-utils/src/ubiformat.c | |
parent | b03c80c7d84e14ab1a28311db4bc7eb08948c569 (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>
Diffstat (limited to 'ubi-utils/src/ubiformat.c')
-rw-r--r-- | ubi-utils/src/ubiformat.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. */ |