From patchwork Mon Mar 20 15:45:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 741060 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 3vn0hX17bcz9s3l for ; Tue, 21 Mar 2017 02:47:56 +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="WhVUe/aV"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753492AbdCTPqM (ORCPT ); Mon, 20 Mar 2017 11:46:12 -0400 Received: from mga04.intel.com ([192.55.52.120]:31854 "EHLO mga04.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754942AbdCTPqM (ORCPT ); Mon, 20 Mar 2017 11:46:12 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490024771; x=1521560771; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=xLb9mYBt0ryvriFJHZQdM3MMFBpFpsRjiTG37Z+BmJI=; b=WhVUe/aVlwJjQZyZ2Msu7RhYSxDTCtzEc8j9L8AFI7DNI5TXvNbRfe/k G3jfGjJ0SZzyAoN4rEVU6Ld/nr4pRw==; Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 20 Mar 2017 08:45:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,195,1486454400"; d="scan'208";a="946265318" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga003.jf.intel.com with ESMTP; 20 Mar 2017 08:45:49 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 108EB1E8; Mon, 20 Mar 2017 17:45:18 +0200 (EET) From: Andy Shevchenko To: Linus Walleij , linux-gpio@vger.kernel.org Cc: Andy Shevchenko Subject: [PATCH v1 2/3] gpio: pca953x: Sort headers alphabetically Date: Mon, 20 Mar 2017 17:45:16 +0200 Message-Id: <20170320154517.41003-2-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20170320154517.41003-1-andriy.shevchenko@linux.intel.com> References: <20170320154517.41003-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 968e8bf5b286..cd6c9c5f3e77 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