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 51B91CCA482 for ; Tue, 28 Jun 2022 09:46:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1344151AbiF1Jqk (ORCPT ); Tue, 28 Jun 2022 05:46:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39344 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1344304AbiF1Jqe (ORCPT ); Tue, 28 Jun 2022 05:46:34 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 04FC725C7B; Tue, 28 Jun 2022 02:46:33 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 97F56617C2; Tue, 28 Jun 2022 09:46:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 553C2C341E2; Tue, 28 Jun 2022 09:46:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1656409590; bh=uLwYP4VIFIvnNdqDbc6GDUr5BO5ueAv2OaStvlcNVIs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Z35o19HFUXHnWtGilAH+MVwzdnBZMbIU1Frq6P3JoAcQNTV7LUIYonaROoJuLP6pQ 5BpwwbEaoQDZd/GXpqHBAhPoP7WAKGzdmIuU99Qjt84dlLh1a1guSAVrcrlTKpIiBC UNMf6Y6AmfPtgfQtpLq7w1pB1aOFEriT2JYp43OgopKgwgKpdHvadx8kGLnY3z1cit U57qTuW8AyAqUWw5oDd5I9YTq7XgMjOIxYY82SgFkVQoQ8/zUJQWRYLujfLBwe5T/R 3bJ8cDz18APoccGNxAxsUtzwKbuMyP2I+YfsqNjfRIwtA0EeVtpEZDnBRXTHyD1AAv cXTag6Lav3sFw== Received: from mchehab by mail.kernel.org with local (Exim 4.95) (envelope-from ) id 1o67nf-005HFe-Uw; Tue, 28 Jun 2022 10:46:27 +0100 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , "Mauro Carvalho Chehab" , linux-kernel@vger.kernel.org Subject: [PATCH 16/22] genalloc: add a description for start_addr parameter Date: Tue, 28 Jun 2022 10:46:20 +0100 Message-Id: <6d8efc83d361ba678b2aab6330ac8977350ea9cd.1656409369.git.mchehab@kernel.org> X-Mailer: git-send-email 2.36.1 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org Copy the same description as found at lib/genalloc.c, fixing this warning: include/linux/genalloc.h:54: warning: Function parameter or member 'start_addr' not described in 'genpool_algo_t' Signed-off-by: Mauro Carvalho Chehab --- To avoid mailbombing on a large number of people, only mailing lists were C/C on the cover. See [PATCH 00/22] at: https://lore.kernel.org/all/cover.1656409369.git.mchehab@kernel.org/ include/linux/genalloc.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/genalloc.h b/include/linux/genalloc.h index 0bd581003cd5..2a67a54e5018 100644 --- a/include/linux/genalloc.h +++ b/include/linux/genalloc.h @@ -44,6 +44,7 @@ struct gen_pool; * @nr: The number of zeroed bits we're looking for * @data: optional additional data used by the callback * @pool: the pool being allocated from + * @start_addr: virtual starting address of memory chunk to add to pool */ typedef unsigned long (*genpool_algo_t)(unsigned long *map, unsigned long size, -- 2.36.1