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 A0EC215CAD for ; Tue, 8 Nov 2022 13:55:07 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 10B2AC433D6; Tue, 8 Nov 2022 13:55:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1667915707; bh=NBStALmNljR8+uMJV4rH7+lAIwrVfUG1e/uawsZ6k5U=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=x2LqBJyrqpDcWttmG70eeITyJZfguNAKSaEO/l98IwfcvmTe7IyjKYmbq+UPRyAVj UfeuVIhm3JIAml+ApznYfeVymP0QZ4qHdHS3pIRwGZiYUu1XuuhSIEm1NSyfW+0Xu7 7bWOnjsLFS3kexsgrnnIM0M1PnLiCqE5J+zLnLoY= 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 5.10 068/118] i2c: xiic: Add platform module alias Date: Tue, 8 Nov 2022 14:39:06 +0100 Message-Id: <20221108133343.693881446@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221108133340.718216105@linuxfoundation.org> References: <20221108133340.718216105@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 8dabb6ffb1a4..3b564e68130b 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c @@ -935,6 +935,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