From patchwork Fri Aug 28 15:41:33 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Biju Das X-Patchwork-Id: 11743311 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 30602138A for ; Fri, 28 Aug 2020 16:07:46 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 0A3D9208C9 for ; Fri, 28 Aug 2020 16:07:46 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=lists.cip-project.org header.i=@lists.cip-project.org header.b="FY5V4/J2" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0A3D9208C9 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=bp.renesas.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+5298+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id IKRgYY4521763x63xbtqCFep; Fri, 28 Aug 2020 09:07:45 -0700 X-Received: from relmlie6.idc.renesas.com (relmlie6.idc.renesas.com []) by mx.groups.io with SMTP id smtpd.web11.45837.1598629320009468924 for ; Fri, 28 Aug 2020 08:42:15 -0700 X-IronPort-AV: E=Sophos;i="5.76,364,1592838000"; d="scan'208";a="55587852" X-Received: from unknown (HELO relmlir5.idc.renesas.com) ([10.200.68.151]) by relmlie6.idc.renesas.com with ESMTP; 29 Aug 2020 00:42:15 +0900 X-Received: from localhost.localdomain (unknown [172.29.52.245]) by relmlir5.idc.renesas.com (Postfix) with ESMTP id 87AD8400C4F0; Sat, 29 Aug 2020 00:42:13 +0900 (JST) From: Biju Das To: cip-dev@lists.cip-project.org, Nobuhiro Iwamatsu , Pavel Machek Cc: Chris Paterson , Biju Das , Prabhakar Mahadev Lad Subject: [cip-dev] [PATCH 4.4.y-cip 08/30] clk: shmobile: Compile clk-rcar-gen2.c when using the r8a7742 Date: Fri, 28 Aug 2020 16:41:33 +0100 Message-Id: <20200828154155.5827-9-biju.das.jz@bp.renesas.com> In-Reply-To: <20200828154155.5827-1-biju.das.jz@bp.renesas.com> References: <20200828154155.5827-1-biju.das.jz@bp.renesas.com> Precedence: Bulk List-Unsubscribe: Sender: cip-dev@lists.cip-project.org List-Id: Mailing-List: list cip-dev@lists.cip-project.org; contact cip-dev+owner@lists.cip-project.org Delivered-To: mailing list cip-dev@lists.cip-project.org Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: gTj2lHBa8QGEZY1TpHvkpcXGx4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1598630865; bh=zxEKEIrnSUHPiAA64VhIHGRZJchX85f6olkA8UH1g3c=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=FY5V4/J21lSSBASenVQ6shAgjpZcy2DS8VncQuf9rEZu6wLsTzYW4GirZ++nXM5yNU+ 8SF635XlPuAJybgsUOggiJItnbuWXY+tI3sQZJD2OTtZU65DNYwvKKEU3KjzCuTErTUnM kCItzmR74J18LO7GPp3kTr4A/bkgwbLMon0= This patch makes sure clk-rcar-gen2,c gets compiled when CONFIG_ARCH_R8A7742 is selected, similarly to what done by commit: 7bac4ad3e40f ("CIP: Build essential clock driver for Renesas RZ/G1 platforms") Signed-off-by: Biju Das --- drivers/clk/shmobile/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/shmobile/Makefile b/drivers/clk/shmobile/Makefile index 6badac598707..2f9fb407aa32 100644 --- a/drivers/clk/shmobile/Makefile +++ b/drivers/clk/shmobile/Makefile @@ -2,6 +2,7 @@ obj-$(CONFIG_ARCH_EMEV2) += clk-emev2.o obj-$(CONFIG_ARCH_R7S72100) += clk-rz.o obj-$(CONFIG_ARCH_R8A73A4) += clk-r8a73a4.o obj-$(CONFIG_ARCH_R8A7740) += clk-r8a7740.o +obj-$(CONFIG_ARCH_R8A7742) += clk-rcar-gen2.o obj-$(CONFIG_ARCH_R8A7743) += clk-rcar-gen2.o obj-$(CONFIG_ARCH_R8A7744) += clk-rcar-gen2.o obj-$(CONFIG_ARCH_R8A7745) += clk-rcar-gen2.o