Re: [PATCH] drm/gma500: remove unused gma_pipe_event function

2023-03-21 Thread Patrik Jakobsson
On Sun, Mar 19, 2023 at 3:23 PM Tom Rix wrote: > > clang with W=1 reports > drivers/gpu/drm/gma500/psb_irq.c:35:19: error: unused function > 'gma_pipe_event' [-Werror,-Wunused-function] > static inline u32 gma_pipe_event(int pipe) > ^ > This function is not used, so remove it.

[PATCH] drm/gma500: remove unused gma_pipe_event function

2023-03-19 Thread Tom Rix
clang with W=1 reports drivers/gpu/drm/gma500/psb_irq.c:35:19: error: unused function 'gma_pipe_event' [-Werror,-Wunused-function] static inline u32 gma_pipe_event(int pipe) ^ This function is not used, so remove it. Signed-off-by: Tom Rix ---