From nobody Thu Oct 2 06:14:45 2025 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 728752E7F1D for ; Mon, 22 Sep 2025 15:32:03 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758555123; cv=none; b=H3/zOOyZPNqeTHcVpc+lqXndnb8rkNkRBMNCT76o0PRNjua0aJpgJGIPVQHU7ka4956oX+Ode9JCNQJ6AnGkrWvlqozhyEKbMF+tXU1vArV7XFGD/xqIgcHT8FpsFZuHH2xeHsUKfkrJAg6fjM3SsfvJbaW9RGV79Tltv65kr04= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758555123; c=relaxed/simple; bh=feNJQYv7PInY8I5BenFb+SjBP4yk4Vqx0u5EFIvIY3Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=utuma1Cddi6/7HFj+nxJDHtlk/8P9ett+sCZcdyEBr1SEQkvNodVX9FbhrNFZI8wmToCMFDybmKQ/xdil3EFHzeLkGu+8ziF0V8gJYnvxg46x2txsTP9bQx5Xx9NHdk2aOJN6IBMxfdHuZwTsnU8AoCfj7H/a5LwKG/f7eggXe0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Gz62KBYA; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Gz62KBYA" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4D9C3C113D0; Mon, 22 Sep 2025 15:32:03 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1758555123; bh=feNJQYv7PInY8I5BenFb+SjBP4yk4Vqx0u5EFIvIY3Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Gz62KBYA4icXkq8LRLecHE6hFGtBxR2ZKAkf74n7Yfm5t8WTKoQam2QUNVsE41lol MnMykPy4iMoleAUuZB2Vugf2iHe3Ggzt52/ng/dg8VZNnGUg2XUj9HA/8FD7ORNc22 SU3VjwfxwwGKtSs2uGBd7kVKPIkMzeI1fCj6gvtt4AJEuIGpuq5/d54XMS65PMuM5f zWyufuxmGw1ZDSW4gVfxvTW4IdWWRik0aMOKC1Ts+I4nF+KkI2qi/3V+rf4b9zg7i9 FxJTEPZloVjPxCd9LIvVDfe6VFrcpERCLx/rK68yPuhEIS0esYnvpzSuhGmDdddii6 ShTj+K7svTvHQ== Received: from johan by xi.lan with local (Exim 4.98.2) (envelope-from ) id 1v0iWC-000000004Hv-2hcA; Mon, 22 Sep 2025 17:31:56 +0200 From: Johan Hovold To: Miquel Raynal Cc: Tudor Ambarus , Richard Weinberger , Vignesh Raghavendra , Kyungmin Park , Michal Simek , Nicolas Ferre , Alexandre Belloni , Claudiu Beznea , Heiko Stuebner , Maxime Coquelin , Alexandre Torgue , Chen-Yu Tsai , Jernej Skrabec , Samuel Holland , linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, Johan Hovold Subject: [PATCH 7/8] mtd: rawnand: stm32_fmc2: drop unused module alias Date: Mon, 22 Sep 2025 17:31:06 +0200 Message-ID: <20250922153107.16381-8-johan@kernel.org> X-Mailer: git-send-email 2.49.1 In-Reply-To: <20250922153107.16381-1-johan@kernel.org> References: <20250922153107.16381-1-johan@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The driver has never supported anything but OF probing so drop the unused platform module alias. Signed-off-by: Johan Hovold --- drivers/mtd/nand/raw/stm32_fmc2_nand.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/mtd/nand/raw/stm32_fmc2_nand.c b/drivers/mtd/nand/raw/= stm32_fmc2_nand.c index d957327fb4fa..c08d6b176372 100644 --- a/drivers/mtd/nand/raw/stm32_fmc2_nand.c +++ b/drivers/mtd/nand/raw/stm32_fmc2_nand.c @@ -2158,7 +2158,6 @@ static struct platform_driver stm32_fmc2_nfc_driver = =3D { }; module_platform_driver(stm32_fmc2_nfc_driver); =20 -MODULE_ALIAS("platform:stm32_fmc2_nfc"); MODULE_AUTHOR("Christophe Kerello "); MODULE_DESCRIPTION("STMicroelectronics STM32 FMC2 NFC driver"); MODULE_LICENSE("GPL v2"); --=20 2.49.1