diff options
author | Johan Hovold <johan+linaro@kernel.org> | 2023-03-06 11:07:22 +0100 |
---|---|---|
committer | Dmitry Baryshkov <dmitry.baryshkov@linaro.org> | 2023-04-06 20:29:39 +0300 |
commit | 648cb68309e36ebf88ae938d7e52aea0c75ff93f (patch) | |
tree | 13576edfcb75e7a7831f8a70721ac16aa96e755b | |
parent | a75b49db6529b2af049eafd938fae888451c3685 (diff) | |
download | linux-stable-648cb68309e36ebf88ae938d7e52aea0c75ff93f.tar.gz linux-stable-648cb68309e36ebf88ae938d7e52aea0c75ff93f.tar.bz2 linux-stable-648cb68309e36ebf88ae938d7e52aea0c75ff93f.zip |
drm/msm: move include directive
Move the include of of_address.h to the top of the file where it
belongs.
Signed-off-by: Johan Hovold <johan+linaro@kernel.org>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Patchwork: https://patchwork.freedesktop.org/patch/525105/
Link: https://lore.kernel.org/r/20230306100722.28485-11-johan+linaro@kernel.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
-rw-r--r-- | drivers/gpu/drm/msm/msm_drv.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/msm/msm_drv.c b/drivers/gpu/drm/msm/msm_drv.c index 1d0082ee255c..8972331fa0bb 100644 --- a/drivers/gpu/drm/msm/msm_drv.c +++ b/drivers/gpu/drm/msm/msm_drv.c @@ -8,6 +8,7 @@ #include <linux/dma-mapping.h> #include <linux/fault-inject.h> #include <linux/kthread.h> +#include <linux/of_address.h> #include <linux/sched/mm.h> #include <linux/uaccess.h> #include <uapi/linux/sched/types.h> @@ -275,8 +276,6 @@ static int msm_drm_uninit(struct device *dev) return 0; } -#include <linux/of_address.h> - struct msm_gem_address_space *msm_kms_init_aspace(struct drm_device *dev) { struct msm_gem_address_space *aspace; |