提交 f5709d5f 编写于 作者: P Peter Meerwald 提交者: Jonathan Cameron

staging:iio: Fix iio_utils.h function prototypes

Signed-off-by: NPeter Meerwald <pmeerw@pmeerw.net>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 0378250b
......@@ -633,7 +633,7 @@ int read_sysfs_posint(char *filename, char *basedir)
int read_sysfs_float(char *filename, char *basedir, float *val)
{
float ret = 0;
int ret = 0;
FILE *sysfsfp;
char *temp = malloc(strlen(basedir) + strlen(filename) + 2);
if (temp == NULL) {
......@@ -653,9 +653,9 @@ int read_sysfs_float(char *filename, char *basedir, float *val)
return ret;
}
read_sysfs_string(const char *filename, const char *basedir, char *str)
int read_sysfs_string(const char *filename, const char *basedir, char *str)
{
float ret = 0;
int ret = 0;
FILE *sysfsfp;
char *temp = malloc(strlen(basedir) + strlen(filename) + 2);
if (temp == NULL) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册