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 0B4C528E1 for ; Mon, 3 Oct 2022 20:26:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 67134C433D7; Mon, 3 Oct 2022 20:26:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1664828769; bh=jnFPsoANaGbvm2KNkdpVXHUu0c4//sg68i+LcNYUka4=; h=From:To:Cc:Subject:Date:From; b=SzwqX9dYDN1yuNr2CepyEotD88akT2aFRTYwMR+1Z9LMxMu2gAS62dJMmvkSx1lJG CGIuV7uxz6jWisV4ldlBqVEs1vAm0x84pFG2Py2/24Pbc3ZPrARFOeAZyZYp93gvwV SqVaC/dmdgFqq2gSQTG3GrmyCHGFX15RDC/xZtuv6z1wtJtNKr3yyPiLqWTtDKj14J hat4sHoBoTCzqYr1R2YLTBvpMYv8l77fPvZqCFKu3t7FWZ5bbiKf2QxoUhJeXpySEt DnyNk9OmkQMCD3wwQrNWs0nAaOMOZlOSIO+hxzlM+E6rt6AbUGL0Ndx4DWJLk0jSYP 1MK4PG/5bSzSw== From: Stephen Boyd To: Michael Turquette , Stephen Boyd Cc: linux-kernel@vger.kernel.org, linux-clk@vger.kernel.org, patches@lists.linux.dev, kernel test robot , Shubhrajyoti Datta Subject: [PATCH] clk: clocking-wizard: Depend on HAS_IOMEM Date: Mon, 3 Oct 2022 13:26:08 -0700 Message-Id: <20221003202608.2611295-1-sboyd@kernel.org> X-Mailer: git-send-email 2.38.0.rc1.362.ged0d419d3c-goog Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This driver uses devm_platform_ioremap_resource() and thus depends on HAS_IOMEM. Add the Kconfig dependency to avoid build issues. Reported-by: kernel test robot Cc: Shubhrajyoti Datta Fixes: c822490f52da ("clk: clocking-wizard: Move clocking-wizard out") Signed-off-by: Stephen Boyd --- drivers/clk/xilinx/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/xilinx/Kconfig b/drivers/clk/xilinx/Kconfig index 5b99ecfd2f06..f205522c40ff 100644 --- a/drivers/clk/xilinx/Kconfig +++ b/drivers/clk/xilinx/Kconfig @@ -20,6 +20,7 @@ config XILINX_VCU config COMMON_CLK_XLNX_CLKWZRD tristate "Xilinx Clocking Wizard" depends on COMMON_CLK && OF + depends on HAS_IOMEM help Support for the Xilinx Clocking Wizard IP core clock generator. Adds support for clocking wizard and compatible. base-commit: e8db788d686a2a2e5318364a1942d01c3cc83d87 -- https://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git/ https://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git