From patchwork Tue Jun 6 14:45:37 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "J, KEERTHY" X-Patchwork-Id: 9769031 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 02C8260364 for ; Tue, 6 Jun 2017 14:47:53 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E70082847A for ; Tue, 6 Jun 2017 14:47:52 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id DBDD82847D; Tue, 6 Jun 2017 14:47:52 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 8907B2847A for ; Tue, 6 Jun 2017 14:47:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751432AbdFFOra (ORCPT ); Tue, 6 Jun 2017 10:47:30 -0400 Received: from fllnx210.ext.ti.com ([198.47.19.17]:11421 "EHLO fllnx210.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751494AbdFFOqV (ORCPT ); Tue, 6 Jun 2017 10:46:21 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by fllnx210.ext.ti.com (8.15.1/8.15.1) with ESMTP id v56Ek8bA031824; Tue, 6 Jun 2017 09:46:08 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1496760368; bh=0Ym5tXH2hhq6drdiv6f9lIA+cxNdYdFGifrpPNdUBYY=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=a/Kd24nQAFcH960M52NPBgkc2zBkXUWHqve1J53Q6cQeAxQaBellEKUGZWzVPnqbI +ZPMcr0rs9W6mdVIXUlXpVoAoOyqIx27QXpeE4kboFeSYOONpoRpcrqJlwkuwdEjda 1Hvrmxqn1fRy8c5YtfYRpgt5AF5zToYO6fGrwHNc= Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id v56Ek8s3009140; Tue, 6 Jun 2017 09:46:08 -0500 Received: from dlep33.itg.ti.com (157.170.170.75) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.294.0; Tue, 6 Jun 2017 09:46:08 -0500 Received: from ula0393675.dhcp.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dlep33.itg.ti.com (8.14.3/8.13.8) with ESMTP id v56EjpSt001299; Tue, 6 Jun 2017 09:46:03 -0500 From: Keerthy To: , , CC: , , Subject: [PATCH 2/5] mfd: tps65218: Add a dependency on OF Date: Tue, 6 Jun 2017 20:15:37 +0530 Message-ID: <1496760340-27959-3-git-send-email-j-keerthy@ti.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1496760340-27959-1-git-send-email-j-keerthy@ti.com> References: <1496760340-27959-1-git-send-email-j-keerthy@ti.com> MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Currently the driver boots only via device tree hence add a dependency on OF. Signed-off-by: Keerthy --- drivers/mfd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index b845d28..75b59f1 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -1327,7 +1327,7 @@ config MFD_TI_LP873X config MFD_TPS65218 tristate "TI TPS65218 Power Management chips" - depends on I2C + depends on I2C && OF select MFD_CORE select REGMAP_I2C select REGMAP_IRQ