Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752503AbdIAUcE (ORCPT ); Fri, 1 Sep 2017 16:32:04 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:53432 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752328AbdIAUcD (ORCPT ); Fri, 1 Sep 2017 16:32:03 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 1CA81603D2 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=sboyd@codeaurora.org Date: Fri, 1 Sep 2017 13:32:01 -0700 From: Stephen Boyd To: Andreas =?iso-8859-1?Q?F=E4rber?= Cc: linux-arm-kernel@lists.infradead.org, Michael Turquette , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, Satoru OKAMOTO Subject: Re: [PATCH v2] clk: mb86s7x: Drop non-building driver Message-ID: <20170901203201.GB21656@codeaurora.org> References: <20170824225237.21485-1-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20170824225237.21485-1-afaerber@suse.de> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2520 Lines: 49 On 08/25, Andreas F?rber wrote: > It fails to build once we introduce the ARCH_MB86S7X Kconfig symbol: > > drivers/clk/clk-mb86s7x.c:27:10: fatal error: soc/mb86s7x/scb_mhu.h: No such file or directory > #include > ^~~~~~~~~~~~~~~~~~~~~~~ > compilation terminated. > > And when commenting out that line, we get: > > drivers/clk/clk-mb86s7x.c: In function 'crg_gate_control': > drivers/clk/clk-mb86s7x.c:72:8: error: implicit declaration of function 'mb86s7x_send_packet' [-Werror=implicit-function-declaration] > ret = mb86s7x_send_packet(CMD_PERI_CLOCK_GATE_SET_REQ, > ^~~~~~~~~~~~~~~~~~~ > drivers/clk/clk-mb86s7x.c:72:28: error: 'CMD_PERI_CLOCK_GATE_SET_REQ' undeclared (first use in this function) > ret = mb86s7x_send_packet(CMD_PERI_CLOCK_GATE_SET_REQ, > ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > drivers/clk/clk-mb86s7x.c:72:28: note: each undeclared identifier is reported only once for each function it appears in > drivers/clk/clk-mb86s7x.c: In function 'crg_rate_control': > drivers/clk/clk-mb86s7x.c:116:10: error: 'CMD_PERI_CLOCK_RATE_SET_REQ' undeclared (first use in this function) > code = CMD_PERI_CLOCK_RATE_SET_REQ; > ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > drivers/clk/clk-mb86s7x.c:121:10: error: 'CMD_PERI_CLOCK_RATE_GET_REQ' undeclared (first use in this function); did you mean 'CMD_PERI_CLOCK_RATE_SET_REQ'? > code = CMD_PERI_CLOCK_RATE_GET_REQ; > ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > CMD_PERI_CLOCK_RATE_SET_REQ > drivers/clk/clk-mb86s7x.c: In function 'mhu_cluster_rate': > drivers/clk/clk-mb86s7x.c:276:10: error: 'CMD_CPU_CLOCK_RATE_GET_REQ' undeclared (first use in this function) > code = CMD_CPU_CLOCK_RATE_GET_REQ; > ^~~~~~~~~~~~~~~~~~~~~~~~~~ > drivers/clk/clk-mb86s7x.c:278:10: error: 'CMD_CPU_CLOCK_RATE_SET_REQ' undeclared (first use in this function); did you mean 'CMD_CPU_CLOCK_RATE_GET_REQ'? > code = CMD_CPU_CLOCK_RATE_SET_REQ; > ^~~~~~~~~~~~~~~~~~~~~~~~~~ > CMD_CPU_CLOCK_RATE_GET_REQ > cc1: some warnings being treated as errors > scripts/Makefile.build:302: recipe for target > 'drivers/clk/clk-mb86s7x.o' failed > make[2]: *** [drivers/clk/clk-mb86s7x.o] Error 1 > > Remove the driver for now. > > Signed-off-by: Andreas F?rber > --- Applied to clk-next -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a Linux Foundation Collaborative Project