From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752158AbcBJPiw (ORCPT ); Wed, 10 Feb 2016 10:38:52 -0500 Received: from mail-wm0-f52.google.com ([74.125.82.52]:33711 "EHLO mail-wm0-f52.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751060AbcBJPiv (ORCPT ); Wed, 10 Feb 2016 10:38:51 -0500 Date: Wed, 10 Feb 2016 15:38:46 +0000 From: Lee Jones To: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Cc: ldewangan@nvidia.com, Linus Walleij Subject: [PATCH v2] mfd: Provide MACRO to declare commonly defined MFD cell attributes Message-ID: <20160210153846.GB26950@x1> References: <1455028027-1527-1-git-send-email-lee.jones@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1455028027-1527-1-git-send-email-lee.jones@linaro.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org mfd: Provide MACRO to declare commonly defined MFD cell attributes Cc: Laxman Dewangan Signed-off-by: Lee Jones --- include/linux/mfd/core.h | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/include/linux/mfd/core.h b/include/linux/mfd/core.h index bc6f7e0..1a5a87f 100644 --- a/include/linux/mfd/core.h +++ b/include/linux/mfd/core.h @@ -16,6 +16,32 @@ #include +#define MFD_ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) + +#define MFD_CELL_ALL(_name, _res, _pdata, _id, _compat, _match) \ + { \ + .name = (_name), \ + .resources = (_res), \ + .num_resources = MFD_ARRAY_SIZE((_res)), \ + .platform_data = (_pdata), \ + .pdata_size = MFD_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; struct property_set;