From d41747f327b260c2fb470775fb9dc78d49a4d79e Mon Sep 17 00:00:00 2001 From: Artem Bityutskiy Date: Sun, 26 Apr 2009 08:47:03 +0300 Subject: libmtd: make type_str to be an array This is a prepearation to the coming sysfs interface support. Signed-off-by: Artem Bityutskiy --- ubi-utils/include/libmtd.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ubi-utils/include') diff --git a/ubi-utils/include/libmtd.h b/ubi-utils/include/libmtd.h index d1290e0..6a93e5f 100644 --- a/ubi-utils/include/libmtd.h +++ b/ubi-utils/include/libmtd.h @@ -27,6 +27,9 @@ extern "C" { #endif +/* Maximum MTD device type string length */ +#define MTD_TYPE_MAX 64 + /** * struct mtd_dev_info - information about an MTD device. * @dev_num: MTD device number @@ -48,7 +51,7 @@ struct mtd_dev_info int major; int minor; int type; - const char *type_str; + const char type_str[MTD_TYPE_MAX]; long long size; int eb_cnt; int eb_size; -- cgit v1.2.3