aboutsummaryrefslogtreecommitdiffstats
path: root/arch/parisc/include
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2022-06-07 12:57:58 +0200
committerHelge Deller <deller@gmx.de>2022-06-07 13:01:17 +0200
commit1d0811b03eb30b2f0793acaa96c6ce90b8b9c87a (patch)
tree611de7a3d616ebb6537129268fa4d32b69463d2e /arch/parisc/include
parentLinux 5.19-rc1 (diff)
downloadlinux-dev-1d0811b03eb30b2f0793acaa96c6ce90b8b9c87a.tar.xz
linux-dev-1d0811b03eb30b2f0793acaa96c6ce90b8b9c87a.zip
parisc/stifb: Fix fb_is_primary_device() only available with CONFIG_FB_STI
Fix this build error noticed by the kernel test robot: drivers/video/console/sticore.c:1132:5: error: redefinition of 'fb_is_primary_device' arch/parisc/include/asm/fb.h:18:19: note: previous definition of 'fb_is_primary_device' Signed-off-by: Helge Deller <deller@gmx.de> Reported-by: kernel test robot <lkp@intel.com> Cc: stable@vger.kernel.org # v5.10+
Diffstat (limited to 'arch/parisc/include')
-rw-r--r--arch/parisc/include/asm/fb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/include/asm/fb.h b/arch/parisc/include/asm/fb.h
index d63a2acb91f2..55d29c4f716e 100644
--- a/arch/parisc/include/asm/fb.h
+++ b/arch/parisc/include/asm/fb.h
@@ -12,7 +12,7 @@ static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
pgprot_val(vma->vm_page_prot) |= _PAGE_NO_CACHE;
}
-#if defined(CONFIG_STI_CONSOLE) || defined(CONFIG_FB_STI)
+#if defined(CONFIG_FB_STI)
int fb_is_primary_device(struct fb_info *info);
#else
static inline int fb_is_primary_device(struct fb_info *info)