From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932158AbcBIO31 (ORCPT ); Tue, 9 Feb 2016 09:29:27 -0500 Received: from mail-wm0-f42.google.com ([74.125.82.42]:37909 "EHLO mail-wm0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755956AbcBIO3K (ORCPT ); Tue, 9 Feb 2016 09:29:10 -0500 From: Lee Jones To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: ldewangan@nvidia.com Subject: [PATCH] mfd: Provide MACRO to declare commonly defined MFD cell attributes Date: Tue, 9 Feb 2016 14:27:07 +0000 Message-Id: <1455028027-1527-1-git-send-email-lee.jones@linaro.org> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Cc: Laxman Dewangan Signed-off-by: Lee Jones --- include/linux/mfd/core.h | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h index 27dac3f..dacdc49 100644 --- a/include/linux/mfd/core.h +++ b/include/linux/mfd/core.h @@ -16,6 +16,38 @@ #include +#define MFD_CELL_ALL(_name, _res, _pdata, _id, _compat, _match) \ + { \ + .name = (_name), \ + .num_resources = ARRAY_SIZE((_res)), \ + .resources = (_res), \ + .platform_data = (_pdata), \ + .pdata_size = ARRAY_SIZE((_pdata)), \ + .of_compatible = (_compat), \ + .acpi_match = (_match), \ + .id = _id, \ + } + +#define OF_MFD_CELL(_name, _res, _pdata, _id, _compat) \ + { \ + MFD_CELL_ALL(_name, _res, _pdata, _id, _compat, NULL) \ + } + +#define ACPI_MFD_CELL(_name, _res, _pdata, _id, _match) \ + { \ + MFD_CELL_ALL(_name, _res, _pdata, _id, NULL, _match) \ + } + +#define MFD_CELL_BASIC(_name, _res, _pdata, _id) \ + { \ + MFD_CELL_ALL(_name, _res, _pdata, _id, NULL, NULL) \ + } + +#define MFD_CELL_NAME(_name) \ + { \ + MFD_CELL_ALL(_name, NULL, NULL, 0, NULL, NULL) \ + } + struct irq_domain; /* Matches ACPI PNP id, either _HID or _CID, or ACPI _ADR */ -- 1.9.1