diff options
author | Thierry Reding <treding@nvidia.com> | 2017-03-21 10:54:21 +0300 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2017-04-05 19:11:49 +0300 |
commit | 7e7d432c5a736e7106c8700b65d8c31b93bd1c82 (patch) | |
tree | 07df3a00af63b65e7c26157cde99dd5703ea9a01 /drivers/gpu/host1x/dev.h | |
parent | 0ae797a8ba05a2354db5e81c1d7df04671dd1c25 (diff) | |
download | linux-7e7d432c5a736e7106c8700b65d8c31b93bd1c82.tar.xz |
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 <treding@nvidia.com>
Diffstat (limited to 'drivers/gpu/host1x/dev.h')
-rw-r--r-- | drivers/gpu/host1x/dev.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/host1x/dev.h b/drivers/gpu/host1x/dev.h index e5113acecd7a..561c5776cafb 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 <linux/platform_device.h> #include <linux/device.h> #include <linux/iommu.h> #include <linux/iova.h> +#include <linux/platform_device.h> +#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; |