From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 4344D15AE7 for ; Wed, 20 Sep 2023 12:18:19 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id BC094C433C9; Wed, 20 Sep 2023 12:18:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1695212299; bh=OEwPCc4W0fHIo4qthH52VyDT1M5EpZu56pwbcPszUoM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=B6MzxzlWL2/Gffq1ZSxUIanT9oVM9HQT7adz7D/W0dbn3zNb9Q3RFmml6x5KXGpxo bu5o9+fPxKU1sndjnRS+2oK76ZHtsPUV0P06g34YU5ow9jiWqyCY4GDDVXy+YUUMmg d4aTddk4tVxxEJVNZygE00HOQazJ3E+LA8uFOOhM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Damien Le Moal , Linus Walleij Subject: [PATCH 4.19 224/273] ata: sata_gemini: Add missing MODULE_DESCRIPTION Date: Wed, 20 Sep 2023 13:31:04 +0200 Message-ID: <20230920112853.330525042@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230920112846.440597133@linuxfoundation.org> References: <20230920112846.440597133@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 4.19-stable review patch. If anyone has any objections, please let me know. ------------------ From: Damien Le Moal commit 8566572bf3b4d6e416a4bf2110dbb4817d11ba59 upstream. Add the missing MODULE_DESCRIPTION() to avoid warnings such as: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/ata/sata_gemini.o when compiling with W=1. Fixes: be4e456ed3a5 ("ata: Add driver for Faraday Technology FTIDE010") Cc: stable@vger.kernel.org Signed-off-by: Damien Le Moal Reviewed-by: Linus Walleij Signed-off-by: Greg Kroah-Hartman --- drivers/ata/sata_gemini.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/ata/sata_gemini.c +++ b/drivers/ata/sata_gemini.c @@ -434,6 +434,7 @@ static struct platform_driver gemini_sat }; module_platform_driver(gemini_sata_driver); +MODULE_DESCRIPTION("low level driver for Cortina Systems Gemini SATA bridge"); MODULE_AUTHOR("Linus Walleij "); MODULE_LICENSE("GPL"); MODULE_ALIAS("platform:" DRV_NAME);