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 9EC4615CAB for ; Tue, 8 Nov 2022 13:43:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1A800C433C1; Tue, 8 Nov 2022 13:43:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1667915003; bh=H+JQNiiZ6+f/nThJ73PKoSGPExClYo5IM8SxKCWowaA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=efEwavxndD/w6JIyrHu0bgG6lQgYf+SLm+9XPGT2J1tX/F440IEH8AieZG134bGC9 mQmBJPkfOP9evBFuNY3svDIJauShlknSwR3fFh9YWg2QKqm2ZWiTKkcNDE5RX5oFWb i3IKoUubxfXEi+0Et8mQ/ST/p8Gmcwc6vuWJDitU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, =?UTF-8?q?Martin=20T=C5=AFma?= , Michal Simek , Wolfram Sang , Sasha Levin Subject: [PATCH 4.14 22/40] i2c: xiic: Add platform module alias Date: Tue, 8 Nov 2022 14:39:07 +0100 Message-Id: <20221108133329.232275218@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221108133328.351887714@linuxfoundation.org> References: <20221108133328.351887714@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Martin Tůma [ Upstream commit b8caf0a0e04583fb71e21495bef84509182227ea ] The missing "platform" alias is required for the mgb4 v4l2 driver to load the i2c controller driver when probing the HW. Signed-off-by: Martin Tůma Acked-by: Michal Simek Signed-off-by: Wolfram Sang Signed-off-by: Sasha Levin --- drivers/i2c/busses/i2c-xiic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/i2c/busses/i2c-xiic.c b/drivers/i2c/busses/i2c-xiic.c index da526cc471cc..1f512f0d31a5 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c @@ -900,6 +900,7 @@ static struct platform_driver xiic_i2c_driver = { module_platform_driver(xiic_i2c_driver); +MODULE_ALIAS("platform:" DRIVER_NAME); MODULE_AUTHOR("info@mocean-labs.com"); MODULE_DESCRIPTION("Xilinx I2C bus driver"); MODULE_LICENSE("GPL v2"); -- 2.35.1