Re: [PATCH] drm/panel: novatek-nt36672e: Include

2024-01-19 Thread Linus Walleij
On Tue, Jan 16, 2024 at 8:19 AM Ritesh Kumar  wrote:

> Include  instead of  to fix
> below compilation errors:
>
> drivers/gpu/drm/panel/panel-novatek-nt36672e.c:564:14: error: implicit 
> declaration of function 'of_device_get_match_data'
>   ctx->desc = of_device_get_match_data(dev);
>   ^
> drivers/gpu/drm/panel/panel-novatek-nt36672e.c:622:34: error: array type has 
> incomplete element type 'struct of_device_id'
>  static const struct of_device_id nt36672e_of_match[] = {
>   ^
>
> Signed-off-by: Ritesh Kumar 

Patch applied to drm-misc-next on top of the commit that need fixing.

Yours,
Linus Walleij


Re: [PATCH] drm/panel: novatek-nt36672e: Include

2024-01-16 Thread neil . armstrong

On 16/01/2024 08:18, Ritesh Kumar wrote:

Include  instead of  to fix
below compilation errors:

drivers/gpu/drm/panel/panel-novatek-nt36672e.c:564:14: error: implicit 
declaration of function 'of_device_get_match_data'
   ctx->desc = of_device_get_match_data(dev);
   ^
drivers/gpu/drm/panel/panel-novatek-nt36672e.c:622:34: error: array type has 
incomplete element type 'struct of_device_id'
  static const struct of_device_id nt36672e_of_match[] = {
   ^

Signed-off-by: Ritesh Kumar 

---
In the patch 
https://lore.kernel.org/all/20231129164316.2663565-1-r...@kernel.org/,
include of  from of_device.h was removed. This change was not 
present
in my local build resulting in successful compilation while posting
https://lore.kernel.org/all/20240108095902.22725-3-quic_rite...@quicinc.com/.
---
  drivers/gpu/drm/panel/panel-novatek-nt36672e.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/panel/panel-novatek-nt36672e.c 
b/drivers/gpu/drm/panel/panel-novatek-nt36672e.c
index d4e85c2fc899..cb7406d74466 100644
--- a/drivers/gpu/drm/panel/panel-novatek-nt36672e.c
+++ b/drivers/gpu/drm/panel/panel-novatek-nt36672e.c
@@ -4,7 +4,7 @@
  #include 
  #include 
  #include 
-#include 
+#include 
  #include 
  
  #include 


Fixes: ea4f9975625a ("drm/panel: Add support for Novatek NT36672E panel driver")
Reviewed-by: Neil Armstrong 


[PATCH] drm/panel: novatek-nt36672e: Include

2024-01-15 Thread Ritesh Kumar
Include  instead of  to fix
below compilation errors:

drivers/gpu/drm/panel/panel-novatek-nt36672e.c:564:14: error: implicit 
declaration of function 'of_device_get_match_data'
  ctx->desc = of_device_get_match_data(dev);
  ^
drivers/gpu/drm/panel/panel-novatek-nt36672e.c:622:34: error: array type has 
incomplete element type 'struct of_device_id'
 static const struct of_device_id nt36672e_of_match[] = {
  ^

Signed-off-by: Ritesh Kumar 

---
In the patch 
https://lore.kernel.org/all/20231129164316.2663565-1-r...@kernel.org/,
include of  from of_device.h was removed. This change was not 
present
in my local build resulting in successful compilation while posting
https://lore.kernel.org/all/20240108095902.22725-3-quic_rite...@quicinc.com/.
---
 drivers/gpu/drm/panel/panel-novatek-nt36672e.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/panel/panel-novatek-nt36672e.c 
b/drivers/gpu/drm/panel/panel-novatek-nt36672e.c
index d4e85c2fc899..cb7406d74466 100644
--- a/drivers/gpu/drm/panel/panel-novatek-nt36672e.c
+++ b/drivers/gpu/drm/panel/panel-novatek-nt36672e.c
@@ -4,7 +4,7 @@
 #include 
 #include 
 #include 
-#include 
+#include 
 #include 
 
 #include 
-- 
2.17.1