From patchwork Tue Jun 6 14:45:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "J, KEERTHY" X-Patchwork-Id: 9769033 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 C0F7E60364 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 B138C2847A for ; Tue, 6 Jun 2017 14:47:53 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id A612D2847D; Tue, 6 Jun 2017 14:47:53 +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 4CC462847A for ; Tue, 6 Jun 2017 14:47:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751467AbdFFOqR (ORCPT ); Tue, 6 Jun 2017 10:46:17 -0400 Received: from lelnx193.ext.ti.com ([198.47.27.77]:53956 "EHLO lelnx193.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751281AbdFFOqP (ORCPT ); Tue, 6 Jun 2017 10:46:15 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by lelnx193.ext.ti.com (8.15.1/8.15.1) with ESMTP id v56EkDAQ020909; Tue, 6 Jun 2017 09:46:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ti.com; s=ti-com-17Q1; t=1496760373; bh=7f6uaWuEGsIvZQNHHgF8FM6G7qOXKbh1u3u1AzViv1E=; h=From:To:CC:Subject:Date:In-Reply-To:References; b=TW0PTTGy85XTHM3d7sNryEtqeVNzHugFTwihJ8EFcBfIJzzolcvNILlrDGxAz9EbF BjfroFJwCa8Z2tdhfxJoCQyVi8CL9Bu+FOhEo8LSGb9tsvKA/UM1QIehNtsD8ZPeEw qj/4smsroobJI+xPIDcjeJJaYuVJmHRIWkS/Sxm8= Received: from DFLE72.ent.ti.com (dfle72.ent.ti.com [128.247.5.109]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id v56EkDpt009266; Tue, 6 Jun 2017 09:46:13 -0500 Received: from dlep33.itg.ti.com (157.170.170.75) by DFLE72.ent.ti.com (128.247.5.109) with Microsoft SMTP Server id 14.3.294.0; Tue, 6 Jun 2017 09:46:12 -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 v56EjpSu001299; Tue, 6 Jun 2017 09:46:08 -0500 From: Keerthy To: , , CC: , , Subject: [PATCH 3/5] mfd: tps65217: Add a dependency on OF Date: Tue, 6 Jun 2017 20:15:38 +0530 Message-ID: <1496760340-27959-4-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 75b59f1..2d1425d 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -1297,7 +1297,7 @@ config MFD_TPS65090 config MFD_TPS65217 tristate "TI TPS65217 Power Management / White LED chips" - depends on I2C + depends on I2C && OF select MFD_CORE select REGMAP_I2C select IRQ_DOMAIN