diff options
| author | Rob Herring <[email protected]> | 2023-04-10 23:26:47 +0000 |
|---|---|---|
| committer | Lucas Stach <[email protected]> | 2023-06-21 12:43:58 +0000 |
| commit | 426f6e764426a57718e23af5db36ed24e16a46fe (patch) | |
| tree | 0e6450ba1e6a35833cb8fba4c597114ddb8927cf | |
| parent | Linux 6.4-rc1 (diff) | |
| download | kernel-426f6e764426a57718e23af5db36ed24e16a46fe.tar.gz kernel-426f6e764426a57718e23af5db36ed24e16a46fe.zip | |
drm: etnaviv: Replace of_platform.h with explicit includes
Etnaviv doesn't use anything from of_platform.h, but depends on
of.h, of_device.h, and platform_device.h which are all implicitly
included, but that is going to be removed soon.
Signed-off-by: Rob Herring <[email protected]>
Tested-by: Sui Jingfeng <[email protected]>
Signed-off-by: Lucas Stach <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/etnaviv/etnaviv_drv.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/etnaviv/etnaviv_drv.c b/drivers/gpu/drm/etnaviv/etnaviv_drv.c index 31a7f59ccb49..b17a54180220 100644 --- a/drivers/gpu/drm/etnaviv/etnaviv_drv.c +++ b/drivers/gpu/drm/etnaviv/etnaviv_drv.c @@ -6,7 +6,9 @@ #include <linux/component.h> #include <linux/dma-mapping.h> #include <linux/module.h> -#include <linux/of_platform.h> +#include <linux/of.h> +#include <linux/of_device.h> +#include <linux/platform_device.h> #include <linux/uaccess.h> #include <drm/drm_debugfs.h> |
