Re: [PATCH] drm/panthor: Fix missing declaration for panthor_transparent_hugepage

From: Steven Price

Date: Thu May 07 2026 - 04:09:55 EST


On 03/05/2026 15:42, gyeyoung wrote:
> sparse reports:
> drivers/gpu/drm/panthor/panthor_drv.c:1805:6: warning: symbol 'panthor_transparent_hugepage' was not declared. Should it be static?
>
> Make it clean.
>
> Signed-off-by: gyeyoung <gye976@xxxxxxxxx>

Reviewed-by: Steven Price <steven.price@xxxxxxx>

Thanks, I'll push this to drm-misc-next.

Steve

> ---
> drivers/gpu/drm/panthor/panthor_drv.c | 1 +
> drivers/gpu/drm/panthor/panthor_drv.h | 2 ++
> 2 files changed, 3 insertions(+)
>
> diff --git a/drivers/gpu/drm/panthor/panthor_drv.c b/drivers/gpu/drm/panthor/panthor_drv.c
> index 66996c9147c2..e8dc4096c1d2 100644
> --- a/drivers/gpu/drm/panthor/panthor_drv.c
> +++ b/drivers/gpu/drm/panthor/panthor_drv.c
> @@ -31,6 +31,7 @@
>
> #include "panthor_devfreq.h"
> #include "panthor_device.h"
> +#include "panthor_drv.h"
> #include "panthor_fw.h"
> #include "panthor_gem.h"
> #include "panthor_gpu.h"
> diff --git a/drivers/gpu/drm/panthor/panthor_drv.h b/drivers/gpu/drm/panthor/panthor_drv.h
> index 1bc7ddbad23e..b81f21ed5398 100644
> --- a/drivers/gpu/drm/panthor/panthor_drv.h
> +++ b/drivers/gpu/drm/panthor/panthor_drv.h
> @@ -4,6 +4,8 @@
> #ifndef __PANTHOR_DRV_H__
> #define __PANTHOR_DRV_H__
>
> +#include <linux/types.h>
> +
> extern bool panthor_transparent_hugepage;
>
> #endif