From patchwork Fri Jul 17 20:53:26 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Brugger X-Patchwork-Id: 6819081 Return-Path: X-Original-To: patchwork-linux-mediatek@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 26A3EC05AC for ; Fri, 17 Jul 2015 20:54:10 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 4E243207A5 for ; Fri, 17 Jul 2015 20:54:09 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 6BDF520693 for ; Fri, 17 Jul 2015 20:54:08 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1ZGCe0-000055-4x; Fri, 17 Jul 2015 20:54:08 +0000 Received: from mail-wi0-x22c.google.com ([2a00:1450:400c:c05::22c]) by bombadil.infradead.org with esmtps (Exim 4.80.1 #2 (Red Hat Linux)) id 1ZGCdr-0008VH-Sy; Fri, 17 Jul 2015 20:54:00 +0000 Received: by wibud3 with SMTP id ud3so47689872wib.1; Fri, 17 Jul 2015 13:53:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=3thMnx7o02GV/iMc1u0br/KERGdgUXWI7co/sMrCsnc=; b=VjR5Ys1O4sSQqnIT0qzTy4CiknS+YbLmFAv3dFfE6R15wqWHaoLUeylo0mZKCL80NT AJ/pYs1kZLeWb5KgIN1qBfUoBwta8qitn40Ihi66T+z+0+jK5ASLmvlB36uyiXM6ymnh Q+/Iq/XDUHJsGaQ4vWUct2V969xehITBj36ItE16iv8f3WPQCwVXfVxmBImW7UHOVDaC OKeTGdi8CprlTcy16Jngp2WK8Im5M6tchL3t4T3jRWrm6j0ELSQg9XtIxRwjCQQ7cRAY ceiJw9lZzr4bGRTeLXLpaLGNNaPliHs09/OCbGR5PJDVb63+NSJTJuWo17lScV3oEIbO vLeg== X-Received: by 10.194.5.74 with SMTP id q10mr32277400wjq.27.1437166417525; Fri, 17 Jul 2015 13:53:37 -0700 (PDT) Received: from ubix.com ([77.231.167.246]) by smtp.gmail.com with ESMTPSA id ft5sm10010656wib.4.2015.07.17.13.53.35 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 17 Jul 2015 13:53:36 -0700 (PDT) From: Matthias Brugger To: matthias.bgg@gmail.com, linux@arm.linux.org.uk Subject: [PATCH] ARM: mediatek: Add regmap to mediatek Kconfig Date: Fri, 17 Jul 2015 22:53:26 +0200 Message-Id: <1437166406-14233-1-git-send-email-matthias.bgg@gmail.com> X-Mailer: git-send-email 1.9.1 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150717_135400_083972_23DE0390 X-CRM114-Status: GOOD ( 12.16 ) X-Spam-Score: -2.7 (--) X-BeenThere: linux-mediatek@lists.infradead.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org MIME-Version: 1.0 Sender: "Linux-mediatek" Errors-To: linux-mediatek-bounces+patchwork-linux-mediatek=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_MED, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Mediatek SoC needs the regmap/syscon infrastructure. The infrastructure is used by the clock and pinctrl driver. This patch adds MD_SYSCON to Kconfig for all Mediatek devices. Signed-off-by: Matthias Brugger --- arch/arm/mach-mediatek/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/mach-mediatek/Kconfig b/arch/arm/mach-mediatek/Kconfig index 9f59e58..aeece17 100644 --- a/arch/arm/mach-mediatek/Kconfig +++ b/arch/arm/mach-mediatek/Kconfig @@ -3,6 +3,7 @@ menuconfig ARCH_MEDIATEK select ARM_GIC select PINCTRL select MTK_TIMER + select MFD_SYSCON help Support for Mediatek MT65xx & MT81xx SoCs