From patchwork Sat Feb 12 19:45:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Wolfram Sang X-Patchwork-Id: 542246 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 86F67C433EF for ; Sat, 12 Feb 2022 19:46:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231206AbiBLTqG (ORCPT ); Sat, 12 Feb 2022 14:46:06 -0500 Received: from mxb-00190b01.gslb.pphosted.com ([23.128.96.19]:56558 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230072AbiBLTqF (ORCPT ); Sat, 12 Feb 2022 14:46:05 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B7BEA606CD; Sat, 12 Feb 2022 11:46:01 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 5F348B8068F; Sat, 12 Feb 2022 19:46:00 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3CED4C340E7; Sat, 12 Feb 2022 19:45:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1644695158; bh=D5kuqxFtgNZgdrn3s7Yj+iwFmkMGtVe1YHCagXT5VzI=; h=From:To:Cc:Subject:Date:From; b=LvNcN6Dva4O9cO8rU20p8PbzRJM6PueXCImRI9u/USpsF6fK7UrLSz8Smnk7yymft c6rIUB028FcRBjxfjtHbzv6LHMFrfBlc+MUUJ6BU1xDapb2lGTMoWKD6i4Kv0Pj9vA 3sZlx/vVTxDb7yiB4mpJEXA4+ch6av/RE0dmd9leE7i40mzq5HE7CgiNh1uxTrVwk5 9FpDRPwZ/+ewQxaob5iiIio7lgGQ9xpSkcHGqbVopzYGWe2IdiiR3abCR3g3G1qp84 BzxdOw8cHRmRry3FXwkw5hlZm2/YWd8yp62IOdeAHd6mJ2QKnBt8oLW3Y9ZZclT7+f iFAuAAUdSMjKw== From: Wolfram Sang To: linux-i2c@vger.kernel.org Cc: Wolfram Sang , Michal Simek , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] i2c: cadence: allow COMPILE_TEST Date: Sat, 12 Feb 2022 20:45:48 +0100 Message-Id: <20220212194549.11021-1-wsa@kernel.org> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-i2c@vger.kernel.org Driver builds fine with COMPILE_TEST. Enable it for wider test coverage and easier maintenance. Signed-off-by: Wolfram Sang Acked-by: Michal Simek --- drivers/i2c/busses/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index 42da31c1ab70..bad2fadc94a3 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig @@ -488,7 +488,7 @@ config I2C_BRCMSTB config I2C_CADENCE tristate "Cadence I2C Controller" - depends on ARCH_ZYNQ || ARM64 || XTENSA + depends on ARCH_ZYNQ || ARM64 || XTENSA || COMPILE_TEST help Say yes here to select Cadence I2C Host Controller. This controller is e.g. used by Xilinx Zynq.