9
0
Fork 0

of: property: fix error message

At least in standard oxford english one not is enough.

Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Steffen Trumtrar 2013-04-25 17:12:22 +02:00 committed by Sascha Hauer
parent 97c636365e
commit bbe01fedf5
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ static int of_parse_prop_cells(char * const *newval, int count, char *data, int
/* If the ptr didn't advance, something went wrong */
if ((newp - cp) <= 0) {
printf("cannot not convert \"%s\"\n", cp);
printf("cannot convert \"%s\"\n", cp);
return -EINVAL;
}
@ -105,7 +105,7 @@ static int of_parse_prop_stream(char * const *newval, int count, char *data, int
/* If the ptr didn't advance, something went wrong */
if ((newp - cp) <= 0) {
printf("cannot not convert \"%s\"\n", cp);
printf("cannot convert \"%s\"\n", cp);
return -EINVAL;
}
}