From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754801AbbINIfc (ORCPT ); Mon, 14 Sep 2015 04:35:32 -0400 Received: from mga14.intel.com ([192.55.52.115]:39980 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752121AbbINIf2 (ORCPT ); Mon, 14 Sep 2015 04:35:28 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,526,1437462000"; d="scan'208";a="804650759" From: Qipeng Zha To: linux-kernel@vger.kernel.org Cc: broonie@kernel.org, lee.jones@linaro.org, samuel.ortiz@intel.com, qipeng.zha@intel.com Subject: [PATCH v6 2/3] mfd: update intel_soc_pmic structure to support Broxton WC PMIC Date: Tue, 15 Sep 2015 00:39:18 +0800 Message-Id: <1442248759-124102-2-git-send-email-qipeng.zha@intel.com> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1442248759-124102-1-git-send-email-qipeng.zha@intel.com> References: <1442248759-124102-1-git-send-email-qipeng.zha@intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org IRQ control registers of Intel Broxton Whisky Cove PMIC are separated in two parts, so add secondary IRQ chip. And the new member of device will be used in PMC IPC regmap APIs. Signed-off-by: Qipeng Zha --- include/linux/mfd/intel_soc_pmic.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/mfd/intel_soc_pmic.h b/include/linux/mfd/intel_soc_pmic.h index abcbfcf..cf619db 100644 --- a/include/linux/mfd/intel_soc_pmic.h +++ b/include/linux/mfd/intel_soc_pmic.h @@ -25,6 +25,8 @@ struct intel_soc_pmic { int irq; struct regmap *regmap; struct regmap_irq_chip_data *irq_chip_data; + struct regmap_irq_chip_data *irq_chip_data_level2; + struct device *dev; }; #endif /* __INTEL_SOC_PMIC_H__ */ -- 1.8.3.2