Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964951AbeALOZR (ORCPT + 1 other); Fri, 12 Jan 2018 09:25:17 -0500 Received: from esa5.microchip.iphmx.com ([216.71.150.166]:54444 "EHLO esa5.microchip.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S964848AbeALOY2 (ORCPT ); Fri, 12 Jan 2018 09:24:28 -0500 X-IronPort-AV: E=Sophos;i="5.46,349,1511852400"; d="scan'208";a="8191807" From: Claudiu Beznea To: , , , , , , , , , CC: , , , , , , , Claudiu Beznea Subject: [PATCH v2 14/16] pwm: add push-pull mode Date: Fri, 12 Jan 2018 16:23:01 +0200 Message-ID: <1515766983-15151-15-git-send-email-claudiu.beznea@microchip.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1515766983-15151-1-git-send-email-claudiu.beznea@microchip.com> References: <1515766983-15151-1-git-send-email-claudiu.beznea@microchip.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Add macro for push-pull mode to be used in DT. Signed-off-by: Claudiu Beznea --- include/dt-bindings/pwm/pwm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/dt-bindings/pwm/pwm.h b/include/dt-bindings/pwm/pwm.h index b8617431f8ec..c6365807c30d 100644 --- a/include/dt-bindings/pwm/pwm.h +++ b/include/dt-bindings/pwm/pwm.h @@ -14,5 +14,6 @@ #define PWM_DTMODE_NORMAL (1 << 0) #define PWM_DTMODE_COMPLEMENTARY (1 << 1) +#define PWM_DTMODE_PUSH_PULL (1 << 2) #endif -- 2.7.4