Re: [PATCH v3 1/1] i2c: taos-evm: replace simple_strtoul by kstrtou8

From: Andy Shevchenko
Date: Wed Nov 18 2015 - 11:26:30 EST


On Wed, Nov 18, 2015 at 2:55 PM, LABBE Corentin
<clabbe.montjoie@xxxxxxxxx> wrote:
> The simple_strtoul function is marked as obsolete.
> This patch replace it by kstrtou8.
>

Only one concern. simple_strto* goes through the string until it has
an invalid character or \0. In your case kstrtou8 will fail the
transfer. So, is there possible cases when HW returns such data?

And just a style nitpicks below.

> if (p[0] == 'x') {
> - data->byte = simple_strtol(p + 1, NULL, 16);
> + /*
> + * voluntarily dropping error code of kstrtou8 since all

-> Voluntarilyâ

> + * error code that it could return are invalid according
> + * to Documentation/i2c/fault-codes

-> âcodes.

> + */
> + if (kstrtou8(p + 1, 16, &data->byte))
> + return -EPROTO;

--
With Best Regards,
Andy Shevchenko
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/