From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5B8E2EB64DA for ; Mon, 19 Jun 2023 10:59:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232458AbjFSK7G (ORCPT ); Mon, 19 Jun 2023 06:59:06 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58530 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232465AbjFSK6m (ORCPT ); Mon, 19 Jun 2023 06:58:42 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 50CD010E3 for ; Mon, 19 Jun 2023 03:57:03 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id E148460B5F for ; Mon, 19 Jun 2023 10:57:02 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F3D35C433C8; Mon, 19 Jun 2023 10:57:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1687172222; bh=fJq3Hi33yj9LJ+8xSEBf1WK4slcQWuCD+cpqgsFNdYI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uiGE99OV/d2Hh7uFU9lkekAwS5RoOVW3UTYt1fTmC/TejJ8jWWr3shO7ohjteB0K+ nVQd5ftFn8uhIjbkhFlbUWCOXlsaGIZTWs0WrKV451VLCyzNuTX5lRbIUs8c83Cgoi ECsIIg1Y0nXxifZoODS83RGujIg6cLz9gTgcXy0M= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Sven Eckelmann , Simon Wunderlich Subject: [PATCH 5.10 80/89] batman-adv: Switch to kstrtox.h for kstrtou64 Date: Mon, 19 Jun 2023 12:31:08 +0200 Message-ID: <20230619102141.916424918@linuxfoundation.org> X-Mailer: git-send-email 2.41.0 In-Reply-To: <20230619102138.279161276@linuxfoundation.org> References: <20230619102138.279161276@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Sven Eckelmann commit 55207227189a07513ba4107d72e256313a66a2f3 upstream. The commit 4c52729377ea ("kernel.h: split out kstrtox() and simple_strtox() to a separate header") moved the kstrtou64 function to a new header called linux/kstrtox.h. Signed-off-by: Sven Eckelmann Signed-off-by: Simon Wunderlich Signed-off-by: Greg Kroah-Hartman --- net/batman-adv/gateway_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/batman-adv/gateway_common.c +++ b/net/batman-adv/gateway_common.c @@ -10,7 +10,7 @@ #include #include #include -#include +#include #include #include #include