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 6459D15CAB for ; Tue, 8 Nov 2022 13:41:31 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D8AFFC433D6; Tue, 8 Nov 2022 13:41:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1667914891; bh=8JproDmIxUKonuf1KKRNqVQpO4Bk98mgN8CquEEfLPk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=B8kfa0ZfrSWmj7axQFC2xan8MMiGYOETvBvz3jMTkLqsI9XE6WxNrYEJq8FNxx6eQ KuknIHvq3foMKTlQV5ws0hPtUufa2/fHHoZxOKPC/3ETptlLX1Zlf5nXuldoPemWhz vndDGYm73Kyd0c80Hluei+1AFmWnto5cD40CNVFU= 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.9 19/30] i2c: xiic: Add platform module alias Date: Tue, 8 Nov 2022 14:39:07 +0100 Message-Id: <20221108133327.433087440@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221108133326.715586431@linuxfoundation.org> References: <20221108133326.715586431@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 c65a5d0af555..4b750c99819a 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c @@ -897,6 +897,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