mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-23 17:11:32 +00:00
Replace include statements for <asm/fb.h> with <linux/fb.h>. Fixes the coding style: if a header is available in asm/ and linux/, it is preferable to include the header from linux/. This only affects a few source files, most of which already include <linux/fb.h>. Suggested-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Sui Jingfeng <suijingfeng@loongson.cn> Reviewed-by: Sam Ravnborg <sam@ravnborg.org> Link: https://patchwork.freedesktop.org/patch/msgid/20230512102444.5438-6-tzimmermann@suse.de
24 lines
416 B
C
24 lines
416 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
#include <linux/console.h>
|
|
#include <linux/fb.h>
|
|
#include <linux/module.h>
|
|
|
|
#include <asm/prom.h>
|
|
|
|
int fb_is_primary_device(struct fb_info *info)
|
|
{
|
|
struct device *dev = info->device;
|
|
struct device_node *node;
|
|
|
|
if (console_set_on_cmdline)
|
|
return 0;
|
|
|
|
node = dev->of_node;
|
|
if (node && node == of_console_device)
|
|
return 1;
|
|
|
|
return 0;
|
|
}
|
|
EXPORT_SYMBOL(fb_is_primary_device);
|