From patchwork Wed Mar 22 14:11:12 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 742097 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3vpBVh2r90z9s7H for ; Thu, 23 Mar 2017 01:13:32 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="key not found in DNS" (0-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="SqzmMXvq"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759654AbdCVONa (ORCPT ); Wed, 22 Mar 2017 10:13:30 -0400 Received: from mga02.intel.com ([134.134.136.20]:7028 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934333AbdCVOLW (ORCPT ); Wed, 22 Mar 2017 10:11:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490191881; x=1521727881; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=X0Z8PTWvWtLaQR45VjptNHRisYI7j91Hksj2SJjnPk8=; b=SqzmMXvqYvIe3S4mufZemHkJVAGD/3fela6RcOTAe+jZ+/SrobcdmqWM 2dg7M2sR53d+LaLAwokEMQstkA2jXg==; Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 22 Mar 2017 07:11:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,205,1486454400"; d="scan'208";a="63653723" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga002.jf.intel.com with ESMTP; 22 Mar 2017 07:11:15 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 86A291B2; Wed, 22 Mar 2017 16:11:14 +0200 (EET) From: Andy Shevchenko To: Linus Walleij , linux-gpio@vger.kernel.org, Phil Reid , Bartosz Golaszewski Cc: Andy Shevchenko Subject: [PATCH v2 2/3] gpio: pca953x: Sort headers alphabetically Date: Wed, 22 Mar 2017 16:11:12 +0200 Message-Id: <20170322141113.34396-2-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170322141113.34396-1-andriy.shevchenko@linux.intel.com> References: <20170322141113.34396-1-andriy.shevchenko@linux.intel.com> Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org For sake of better maintenance sort the headers by alphabetical order. Signed-off-by: Andy Shevchenko --- drivers/gpio/gpio-pca953x.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index c149054ef976..cfee792182ab 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c @@ -11,18 +11,19 @@ * the Free Software Foundation; version 2 of the License. */ -#include -#include +#include #include #include -#include #include +#include +#include +#include +#include #include +#include #include + #include -#include -#include -#include #define PCA953X_INPUT 0 #define PCA953X_OUTPUT 1