From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754159AbbINIf1 (ORCPT ); Mon, 14 Sep 2015 04:35:27 -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 S1752121AbbINIf0 (ORCPT ); Mon, 14 Sep 2015 04:35:26 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,526,1437462000"; d="scan'208";a="804650746" 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 1/3] regmap: add generic macro to define regmap_irq Date: Tue, 15 Sep 2015 00:39:17 +0800 Message-Id: <1442248759-124102-1-git-send-email-qipeng.zha@intel.com> X-Mailer: git-send-email 1.8.3.2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add REGMAP_IRQ_REG macro in regmap.h to define regmap_irq structure easily for other driver module. Signed-off-by: Qipeng Zha --- include/linux/regmap.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 116655d..0d1ee0a 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -517,6 +517,9 @@ struct regmap_irq { unsigned int mask; }; +#define REGMAP_IRQ_REG(_irq, _off, _mask) \ + [_irq] = { .reg_offset = (_off), .mask = (_mask) } + /** * Description of a generic regmap irq_chip. This is not intended to * handle every possible interrupt controller, but it should handle a -- 1.8.3.2