From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-185.mta0.migadu.com (out-185.mta0.migadu.com [91.218.175.185]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D158A19066D for ; Tue, 25 Mar 2025 17:07:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.185 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742922429; cv=none; b=OgOmxZMkdzeGsiprmddkrU7YvXR9F7RdCFTSXyJnbvfiLpwtCfLJNNWwAp7i1TxsR+8NJkYTorpPDCU8yazm0G0UtZX1WkyfwZ2NctHHhzD5pDklShylV6YKWBBWcf4TBVAYKcSFCILQaE4UQs8mAyWdR41d7f+h1ZabLCjKv+U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1742922429; c=relaxed/simple; bh=p4hI6rmj/B2jQcKFonO+VLVTRv3JWXwyiknfAMihw2Y=; h=Message-ID:Date:MIME-Version:From:Subject:To:Cc:References: In-Reply-To:Content-Type; b=tFp9mfVhd+yOlMlnJ8sq6kgz+lh9RoFQnwqVSx2UnEX6iUFplPYH4DutaX0LQ/B9Y0k4VI1cIe5+ldg7i6uNu+etaDFjH85w11B9OtWugKYRuhncbhlkweblrb+jkydvoT079Yy/zudhS4aidCKTTx0576404fY0B997qC/KWlo= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=YGdxRfbz; arc=none smtp.client-ip=91.218.175.185 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="YGdxRfbz" Message-ID: <6ab8b951-a2be-4434-8621-0b31d00608ad@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1742922414; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=3Nbign4VerDHGQ4baDVBf0Bsdr3S4g3WcFkWogC97fU=; b=YGdxRfbzDkzHKl5/qMOZrrR4LII7XP0QUt4iwMW61UJEowyRrEsbO9yZpQA0ymxy+9uyFW jTqenr7oGL2jmdGvM8YgwevbtNmWQ7EdCjIvoqFM/bjS9YrRYVsCdLPkYCvMnHVonpPY42 zWBWUW+7/xFGNwbkcmzVqhqiX94q6wo= Date: Tue, 25 Mar 2025 18:06:51 +0100 Precedence: bulk X-Mailing-List: linux-fpga@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Marco Pagani Subject: Re: [PATCH 04/10] fpga: tests: add module descriptions To: Arnd Bergmann , Jeff Johnson , Andrew Morton , Masahiro Yamada , Moritz Fischer , Wu Hao , Xu Yilun Cc: Stephen Rothwell , linux-next@vger.kernel.org, Arnd Bergmann , Tom Rix , Marco Pagani , Russ Weight , linux-fpga@vger.kernel.org, linux-kernel@vger.kernel.org References: <20250324173242.1501003-1-arnd@kernel.org> <20250324173242.1501003-4-arnd@kernel.org> Content-Language: en-US In-Reply-To: <20250324173242.1501003-4-arnd@kernel.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Migadu-Flow: FLOW_OUT On 2025-03-24 18:32, Arnd Bergmann wrote: > From: Arnd Bergmann > > Modules without a description now cause a warning: > > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/fpga/tests/fpga-bridge-test.o > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/fpga/tests/fpga-mgr-test.o > WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/fpga/tests/fpga-region-test.o > > Signed-off-by: Arnd Bergmann Reviewed-by: Marco Pagani > --- > drivers/fpga/tests/fpga-bridge-test.c | 1 + > drivers/fpga/tests/fpga-mgr-test.c | 1 + > drivers/fpga/tests/fpga-region-test.c | 1 + > 3 files changed, 3 insertions(+) > > diff --git a/drivers/fpga/tests/fpga-bridge-test.c b/drivers/fpga/tests/fpga-bridge-test.c > index b9ab29809e96..124ba40e32b1 100644 > --- a/drivers/fpga/tests/fpga-bridge-test.c > +++ b/drivers/fpga/tests/fpga-bridge-test.c > @@ -170,4 +170,5 @@ static struct kunit_suite fpga_bridge_suite = { > > kunit_test_suite(fpga_bridge_suite); > > +MODULE_DESCRIPTION("KUnit test for the FPGA Bridge"); > MODULE_LICENSE("GPL"); > diff --git a/drivers/fpga/tests/fpga-mgr-test.c b/drivers/fpga/tests/fpga-mgr-test.c > index 9cb37aefbac4..8748babb0504 100644 > --- a/drivers/fpga/tests/fpga-mgr-test.c > +++ b/drivers/fpga/tests/fpga-mgr-test.c > @@ -330,4 +330,5 @@ static struct kunit_suite fpga_mgr_suite = { > > kunit_test_suite(fpga_mgr_suite); > > +MODULE_DESCRIPTION("KUnit test for the FPGA Manager"); > MODULE_LICENSE("GPL"); > diff --git a/drivers/fpga/tests/fpga-region-test.c b/drivers/fpga/tests/fpga-region-test.c > index 6a108cafded8..020ceac48509 100644 > --- a/drivers/fpga/tests/fpga-region-test.c > +++ b/drivers/fpga/tests/fpga-region-test.c > @@ -214,4 +214,5 @@ static struct kunit_suite fpga_region_suite = { > > kunit_test_suite(fpga_region_suite); > > +MODULE_DESCRIPTION("KUnit test for the FPGA Region"); > MODULE_LICENSE("GPL");