arch: Remove struct fb_info from video helpers
authorThomas Zimmermann <tzimmermann@suse.de>
Fri, 29 Mar 2024 20:32:11 +0000 (21:32 +0100)
committerArnd Bergmann <arnd@arndb.de>
Fri, 3 May 2024 15:07:50 +0000 (17:07 +0200)
The per-architecture video helpers do not depend on struct fb_info
or anything else from fbdev. Remove it from the interface and replace
fb_is_primary_device() with video_is_primary_device(). The new helper
is similar in functionality, but can operate on non-fbdev devices.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Sam Ravnborg <sam@ravnborg.org>
Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Cc: Helge Deller <deller@gmx.de>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Andreas Larsson <andreas@gaisler.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: x86@kernel.org
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
arch/parisc/include/asm/fb.h
arch/parisc/video/fbdev.c
arch/sparc/include/asm/fb.h
arch/sparc/video/fbdev.c
arch/x86/include/asm/fb.h
arch/x86/video/fbdev.c
drivers/video/fbdev/core/fbcon.c
include/asm-generic/fb.h

index 658a8a7dc5312bd99f335607346aa12e8f6a6b99..ed2a195a3e7627be3d5d50a892c99d6e23e7d819 100644 (file)
@@ -2,11 +2,13 @@
 #ifndef _ASM_FB_H_
 #define _ASM_FB_H_
 
-struct fb_info;
+#include <linux/types.h>
+
+struct device;
 
 #if defined(CONFIG_STI_CORE)
-int fb_is_primary_device(struct fb_info *info);
-#define fb_is_primary_device fb_is_primary_device
+bool video_is_primary_device(struct device *dev);
+#define video_is_primary_device video_is_primary_device
 #endif
 
 #include <asm-generic/fb.h>
index e4f8ac99fc9e0451b9d05da079030a1ffeca76ae..540fa0c919d5985f4a61ba62b2f8c9cf0131d1e1 100644 (file)
@@ -5,12 +5,13 @@
  * Copyright (C) 2001-2002 Thomas Bogendoerfer <tsbogend@alpha.franken.de>
  */
 
-#include <linux/fb.h>
 #include <linux/module.h>
 
 #include <video/sticore.h>
 
-int fb_is_primary_device(struct fb_info *info)
+#include <asm/fb.h>
+
+bool video_is_primary_device(struct device *dev)
 {
        struct sti_struct *sti;
 
@@ -21,6 +22,6 @@ int fb_is_primary_device(struct fb_info *info)
                return true;
 
        /* return true if it's the default built-in framebuffer driver */
-       return (sti->dev == info->device);
+       return (sti->dev == dev);
 }
-EXPORT_SYMBOL(fb_is_primary_device);
+EXPORT_SYMBOL(video_is_primary_device);
index 24440c0fda490a1f24907865a964721db7d6431a..07f0325d6921cb35007b9f28f880f922aff571ff 100644 (file)
@@ -3,10 +3,11 @@
 #define _SPARC_FB_H_
 
 #include <linux/io.h>
+#include <linux/types.h>
 
 #include <asm/page.h>
 
-struct fb_info;
+struct device;
 
 #ifdef CONFIG_SPARC32
 static inline pgprot_t pgprot_framebuffer(pgprot_t prot,
@@ -18,8 +19,8 @@ static inline pgprot_t pgprot_framebuffer(pgprot_t prot,
 #define pgprot_framebuffer pgprot_framebuffer
 #endif
 
-int fb_is_primary_device(struct fb_info *info);
-#define fb_is_primary_device fb_is_primary_device
+bool video_is_primary_device(struct device *dev);
+#define video_is_primary_device video_is_primary_device
 
 static inline void fb_memcpy_fromio(void *to, const volatile void __iomem *from, size_t n)
 {
index bff66dd1909a4411549f7f381eef4960375b7dbf..e46f0499c277407fd1f1be9c2d43acf5be54247b 100644 (file)
@@ -1,26 +1,25 @@
 // SPDX-License-Identifier: GPL-2.0
 
 #include <linux/console.h>
-#include <linux/fb.h>
+#include <linux/device.h>
 #include <linux/module.h>
 
+#include <asm/fb.h>
 #include <asm/prom.h>
 
-int fb_is_primary_device(struct fb_info *info)
+bool video_is_primary_device(struct device *dev)
 {
-       struct device *dev = info->device;
-       struct device_node *node;
+       struct device_node *node = dev->of_node;
 
        if (console_set_on_cmdline)
-               return 0;
+               return false;
 
-       node = dev->of_node;
        if (node && node == of_console_device)
-               return 1;
+               return true;
 
-       return 0;
+       return false;
 }
-EXPORT_SYMBOL(fb_is_primary_device);
+EXPORT_SYMBOL(video_is_primary_device);
 
 MODULE_DESCRIPTION("Sparc fbdev helpers");
 MODULE_LICENSE("GPL");
index c3b9582de7efd7d56799be21b89eb274343a092a..999db33792869cc7aa04706f7278e141f3b0c10b 100644 (file)
@@ -2,17 +2,19 @@
 #ifndef _ASM_X86_FB_H
 #define _ASM_X86_FB_H
 
+#include <linux/types.h>
+
 #include <asm/page.h>
 
-struct fb_info;
+struct device;
 
 pgprot_t pgprot_framebuffer(pgprot_t prot,
                            unsigned long vm_start, unsigned long vm_end,
                            unsigned long offset);
 #define pgprot_framebuffer pgprot_framebuffer
 
-int fb_is_primary_device(struct fb_info *info);
-#define fb_is_primary_device fb_is_primary_device
+bool video_is_primary_device(struct device *dev);
+#define video_is_primary_device video_is_primary_device
 
 #include <asm-generic/fb.h>
 
index 1dd6528cc947cb224a0dcf5a78ea787fcb28b10a..4d87ce8e257fe205b2e7f26b64b2f3b731160625 100644 (file)
@@ -7,7 +7,6 @@
  *
  */
 
-#include <linux/fb.h>
 #include <linux/module.h>
 #include <linux/pci.h>
 #include <linux/vgaarb.h>
@@ -25,20 +24,17 @@ pgprot_t pgprot_framebuffer(pgprot_t prot,
 }
 EXPORT_SYMBOL(pgprot_framebuffer);
 
-int fb_is_primary_device(struct fb_info *info)
+bool video_is_primary_device(struct device *dev)
 {
-       struct device *device = info->device;
-       struct pci_dev *pci_dev;
+       struct pci_dev *pdev;
 
-       if (!device || !dev_is_pci(device))
-               return 0;
+       if (!dev_is_pci(dev))
+               return false;
 
-       pci_dev = to_pci_dev(device);
+       pdev = to_pci_dev(dev);
 
-       if (pci_dev == vga_default_device())
-               return 1;
-       return 0;
+       return (pdev == vga_default_device());
 }
-EXPORT_SYMBOL(fb_is_primary_device);
+EXPORT_SYMBOL(video_is_primary_device);
 
 MODULE_LICENSE("GPL");
index fcabc668e9fbe794c5f94b10db26f93387ec4ebd..3f7333dca508c8ee3011359a60d19ce7665fc099 100644 (file)
@@ -2907,7 +2907,7 @@ void fbcon_remap_all(struct fb_info *info)
 static void fbcon_select_primary(struct fb_info *info)
 {
        if (!map_override && primary_device == -1 &&
-           fb_is_primary_device(info)) {
+           video_is_primary_device(info->device)) {
                int i;
 
                printk(KERN_INFO "fbcon: %s (fb%i) is primary device\n",
index 6ccabb400aa66fd166bad3e19e3afd739241d9b2..4788c1e1c6bc04131bfb4213d61a7b26cc983865 100644 (file)
@@ -10,8 +10,9 @@
 #include <linux/io.h>
 #include <linux/mm_types.h>
 #include <linux/pgtable.h>
+#include <linux/types.h>
 
-struct fb_info;
+struct device;
 
 #ifndef pgprot_framebuffer
 #define pgprot_framebuffer pgprot_framebuffer
@@ -23,11 +24,11 @@ static inline pgprot_t pgprot_framebuffer(pgprot_t prot,
 }
 #endif
 
-#ifndef fb_is_primary_device
-#define fb_is_primary_device fb_is_primary_device
-static inline int fb_is_primary_device(struct fb_info *info)
+#ifndef video_is_primary_device
+#define video_is_primary_device video_is_primary_device
+static inline bool video_is_primary_device(struct device *dev)
 {
-       return 0;
+       return false;
 }
 #endif