Prev: [RFC PATCH 2/2] x86: Prefer TSC Deadline Timer over LAPIC timer
Next: [PATCH 1/5] staging:ti dspbridge: remove unused typedef REG16
From: Ernesto Ramos on 28 Jul 2010 10:40 Replace simple_strtoul by strict_strtoul in atoi function. Signed-off-by: Ernesto Ramos <ernesto(a)ti.com> --- drivers/staging/tidspbridge/rmgr/dbdcd.c | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/drivers/staging/tidspbridge/rmgr/dbdcd.c b/drivers/staging/tidspbridge/rmgr/dbdcd.c index cceceb9..b96aea7 100644 --- a/drivers/staging/tidspbridge/rmgr/dbdcd.c +++ b/drivers/staging/tidspbridge/rmgr/dbdcd.c @@ -1012,6 +1012,8 @@ static s32 atoi(char *psz_buf) { char *pch = psz_buf; s32 base = 0; + unsigned long res; + int ret_val; while (isspace(*pch)) pch++; @@ -1023,7 +1025,9 @@ static s32 atoi(char *psz_buf) base = 16; } - return simple_strtoul(pch, NULL, base); + ret_val = strict_strtoul(pch, base, &res); + + return ret_val ? : res; } /* -- 1.5.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |