See checkpatch warning "Prefer kstrto<type> to single variable sscanf"
Signed-off-by: Fabian Frederick <f...@skynet.be> --- arch/powerpc/mm/hugetlbpage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/powerpc/mm/hugetlbpage.c b/arch/powerpc/mm/hugetlbpage.c index 7e70ae9..9118313 100644 --- a/arch/powerpc/mm/hugetlbpage.c +++ b/arch/powerpc/mm/hugetlbpage.c @@ -350,7 +350,7 @@ static int __init do_gpage_early_setup(char *param, char *val, size = memparse(val, NULL); } else if (strcmp(param, "hugepages") == 0) { if (size != 0) { - if (sscanf(val, "%lu", &npages) <= 0) + if (kstrtoul(val, 0, &npages)) npages = 0; gpage_npages[shift_to_mmu_psize(__ffs(size))] = npages; size = 0; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/