From 10715127e4f6f5e0e78f2e6d575e5238a3cc9a1f Mon Sep 17 00:00:00 2001 From: Bartlomiej Zolnierkiewicz Date: Fri, 21 Jun 2019 13:04:38 +0200 Subject: video: fbdev: pvr2fb: fix build warning when compiling as module Add missing #ifndef MODULE around pvr2_get_param_val(). Fixes: 0f5a5712ad1e ("video: fbdev: pvr2fb: add COMPILE_TEST support") Reported-by: Stephen Rothwell Signed-off-by: Bartlomiej Zolnierkiewicz --- drivers/video/fbdev/pvr2fb.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'drivers/video') diff --git a/drivers/video/fbdev/pvr2fb.c b/drivers/video/fbdev/pvr2fb.c index 04d56754ac13..15474cae816c 100644 --- a/drivers/video/fbdev/pvr2fb.c +++ b/drivers/video/fbdev/pvr2fb.c @@ -723,6 +723,7 @@ static struct fb_ops pvr2fb_ops = { .fb_imageblit = cfb_imageblit, }; +#ifndef MODULE static int pvr2_get_param_val(const struct pvr2_params *p, const char *s, int size) { @@ -734,6 +735,7 @@ static int pvr2_get_param_val(const struct pvr2_params *p, const char *s, } return -1; } +#endif static char *pvr2_get_param_name(const struct pvr2_params *p, int val, int size) -- cgit v1.2.3-59-g8ed1b