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 1FAD715CAE for ; Tue, 8 Nov 2022 14:02:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 971AAC433C1; Tue, 8 Nov 2022 14:02:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1667916164; bh=NB63cDObVlqxACMDIv5yfytWaUAJOREZeaY8rJxJa04=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iPzM2D13YgJJelUbCAY0OcLgTn7PgW5vnA/D8zc7/oS1euSfl5B8WcI5x2AW180iU rG3lbI84k1RaYH9geZ7wlCW8w0lJcWVxzsURdlmGwz/6U+KzB9Y38M/+NrQgCPw8cn SNcpSdGq/xloxR/JK0bI0SHXyyD2+pzp29DvMqp0= 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.15 082/144] i2c: xiic: Add platform module alias Date: Tue, 8 Nov 2022 14:39:19 +0100 Message-Id: <20221108133348.755470526@linuxfoundation.org> X-Mailer: git-send-email 2.38.1 In-Reply-To: <20221108133345.346704162@linuxfoundation.org> References: <20221108133345.346704162@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 612343771ce2..34b8da949462 100644 --- a/drivers/i2c/busses/i2c-xiic.c +++ b/drivers/i2c/busses/i2c-xiic.c @@ -934,6 +934,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