From patchwork Tue Mar 21 07:54:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thierry Reding X-Patchwork-Id: 741446 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 3vnQ9j2gwnz9s7D for ; Tue, 21 Mar 2017 18:56:09 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b="PG2kfsB5"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755666AbdCUHz1 (ORCPT ); Tue, 21 Mar 2017 03:55:27 -0400 Received: from mail-wm0-f68.google.com ([74.125.82.68]:35610 "EHLO mail-wm0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755004AbdCUHy2 (ORCPT ); Tue, 21 Mar 2017 03:54:28 -0400 Received: by mail-wm0-f68.google.com with SMTP id z133so1411257wmb.2 for ; Tue, 21 Mar 2017 00:54:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=nM4d6rYdaFeAKnQSATQg+qjZzdkQC8mZ8RmEOviU1pM=; b=PG2kfsB5UxDb4nOpcHmMgWcV9FpnPWeI0IDQXp38KqbOqnJCZ3TwAqZQ3+399TNLdh +lahPoVtZA9qRAV2Vdpt1JeRo8mOBZ+MyQ6I9KpRLCr4pjudfLun0KjYDy5lzZew0IBm FrH4pQGhyJ6K4zLAxGSoVltdhrShM1sl2SEF/QTe+329G9flNHAexI/U8uB1sW0Ge3Hf 7yJbUv4OmuPGBNJruI2bNOZQlsBvosV+xMcAs8NidoWVY/q9ANAJf3SMxFSjnKHXyALq cwg9V0FtyGlDC7hGBUHnk9aFxam5gEj8issQcvY+Bs45eEyZLwHSyupOU0urdgsH023a 0Btw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=nM4d6rYdaFeAKnQSATQg+qjZzdkQC8mZ8RmEOviU1pM=; b=GQjYF7+J12POmeEUJ3ZMcqWP9stDPBpm7DoLRG2JVYAdwhBZfY5DLCHEwJKxeQov6V Vn+1VlVz7alnyA9JTUmGnBkav5xh19LXur0sXcKbYv2e0/nzkojIDHKNoJxc/WOppLFI rcgWYFthn7XcXsMxDUKGAb1dGeot8aN82vceSyXNgimXmQWgMKQ52jHzylMHQpfSl9rV CjEgkXZdKCbqZmewrYjkV/VmaAtO5drWqHGD4RJDKyWnQir9zItjd2dYJwLbvhrBATks G8zHiKTKVU8quktaBn+sHs7I+dSAKGBy/TGtDXEVWvkZMp5bi/PfwSF0YOUbcjG+4qk3 HccQ== X-Gm-Message-State: AFeK/H1hcgTQo40KqFczW/5p6UTGbpQv3Z+EO/Z4oBJl6M2DviHxFL7yV87S8AS80OpYaQ== X-Received: by 10.28.183.4 with SMTP id h4mr1484714wmf.140.1490082864217; Tue, 21 Mar 2017 00:54:24 -0700 (PDT) Received: from localhost (port-52488.pppoe.wtnet.de. [46.59.205.174]) by smtp.gmail.com with ESMTPSA id h16sm11828506wrc.5.2017.03.21.00.54.23 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Tue, 21 Mar 2017 00:54:23 -0700 (PDT) From: Thierry Reding To: Thierry Reding Cc: Arto Merilainen , Mikko Perttunen , dri-devel@lists.freedesktop.org, linux-tegra@vger.kernel.org Subject: [PATCH 1/2] gpu: host1x: Sort includes alphabetically Date: Tue, 21 Mar 2017 08:54:21 +0100 Message-Id: <20170321075422.23934-1-thierry.reding@gmail.com> X-Mailer: git-send-email 2.12.0 Sender: linux-tegra-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-tegra@vger.kernel.org From: Thierry Reding Sorting includes alphabetically makes it easier and less conflict-prone to add new includes subsequently. Signed-off-by: Thierry Reding --- drivers/gpu/host1x/dev.c | 12 ++++++------ drivers/gpu/host1x/dev.h | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/host1x/dev.c b/drivers/gpu/host1x/dev.c index a62317af76ad..6c17c4900166 100644 --- a/drivers/gpu/host1x/dev.c +++ b/drivers/gpu/host1x/dev.c @@ -16,14 +16,14 @@ * along with this program. If not, see . */ -#include -#include -#include -#include -#include #include -#include #include +#include +#include +#include +#include +#include +#include #define CREATE_TRACE_POINTS #include diff --git a/drivers/gpu/host1x/dev.h b/drivers/gpu/host1x/dev.h index 06dd4f85125f..862285f2cfb8 100644 --- a/drivers/gpu/host1x/dev.h +++ b/drivers/gpu/host1x/dev.h @@ -17,8 +17,8 @@ #ifndef HOST1X_DEV_H #define HOST1X_DEV_H -#include #include +#include #include "channel.h" #include "syncpt.h"