From: Thierry Reding Date: Tue, 21 Mar 2017 07:54:21 +0000 (+0100) Subject: gpu: host1x: Sort includes alphabetically X-Git-Tag: v4.14-rc1~983^2^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e7d432c5a736e7106c8700b65d8c31b93bd1c82;p=platform%2Fkernel%2Flinux-rpi.git gpu: host1x: Sort includes alphabetically Sorting includes alphabetically makes it easier and less conflict-prone to add new includes subsequently. Signed-off-by: Thierry Reding --- diff --git a/drivers/gpu/host1x/dev.c b/drivers/gpu/host1x/dev.c index b386a0b..8a0d972 100644 --- a/drivers/gpu/host1x/dev.c +++ b/drivers/gpu/host1x/dev.c @@ -16,24 +16,25 @@ * 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 #undef CREATE_TRACE_POINTS #include "bus.h" -#include "dev.h" -#include "intr.h" #include "channel.h" #include "debug.h" +#include "dev.h" +#include "intr.h" + #include "hw/host1x01.h" #include "hw/host1x02.h" #include "hw/host1x04.h" diff --git a/drivers/gpu/host1x/dev.h b/drivers/gpu/host1x/dev.h index e5113ac..561c577 100644 --- a/drivers/gpu/host1x/dev.h +++ b/drivers/gpu/host1x/dev.h @@ -17,16 +17,16 @@ #ifndef HOST1X_DEV_H #define HOST1X_DEV_H -#include #include #include #include +#include +#include "cdma.h" #include "channel.h" -#include "syncpt.h" #include "intr.h" -#include "cdma.h" #include "job.h" +#include "syncpt.h" struct host1x_syncpt; struct host1x_syncpt_base;