Skip to content

Commit 4a9762a

Browse files
neuschaeferhdeller
authored andcommitted
fbdev: Update fbdev source file paths
The files fbmem.c, fb_defio.c, fbsysfs.c, fbmon.c, modedb.c, and fbcmap.c were moved. Drop the path and just keep the file name. Reported by kalekale in #kernel (Libera IRC). Fixes: f7018c2 ("video: move fbdev to drivers/video/fbdev") Fixes: 19757fc ("fbdev: move fbdev core files to separate directory") Signed-off-by: Jonathan Neuschäfer <[email protected]> Signed-off-by: Helge Deller <[email protected]>
1 parent 33d0297 commit 4a9762a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

include/linux/fb.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ extern ssize_t fb_sys_write(struct fb_info *info, const char __user *buf,
588588
.fb_copyarea = sys_copyarea, \
589589
.fb_imageblit = sys_imageblit
590590

591-
/* drivers/video/fbmem.c */
591+
/* fbmem.c */
592592
extern int register_framebuffer(struct fb_info *fb_info);
593593
extern void unregister_framebuffer(struct fb_info *fb_info);
594594
extern int fb_prepare_logo(struct fb_info *fb_info, int rotate);
@@ -631,7 +631,7 @@ static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch,
631631
}
632632
}
633633

634-
/* drivers/video/fb_defio.c */
634+
/* fb_defio.c */
635635
int fb_deferred_io_mmap(struct fb_info *info, struct vm_area_struct *vma);
636636
extern int fb_deferred_io_init(struct fb_info *info);
637637
extern void fb_deferred_io_open(struct fb_info *info,
@@ -734,7 +734,7 @@ extern struct fb_info *framebuffer_alloc(size_t size, struct device *dev);
734734
extern void framebuffer_release(struct fb_info *info);
735735
extern void fb_bl_default_curve(struct fb_info *fb_info, u8 off, u8 min, u8 max);
736736

737-
/* drivers/video/fbmon.c */
737+
/* fbmon.c */
738738
#define FB_MAXTIMINGS 0
739739
#define FB_VSYNCTIMINGS 1
740740
#define FB_HSYNCTIMINGS 2
@@ -768,7 +768,7 @@ extern int of_get_fb_videomode(struct device_node *np,
768768
extern int fb_videomode_from_videomode(const struct videomode *vm,
769769
struct fb_videomode *fbmode);
770770

771-
/* drivers/video/modedb.c */
771+
/* modedb.c */
772772
#define VESA_MODEDB_SIZE 43
773773
#define DMT_SIZE 0x50
774774

@@ -794,7 +794,7 @@ extern void fb_videomode_to_modelist(const struct fb_videomode *modedb, int num,
794794
extern const struct fb_videomode *fb_find_best_display(const struct fb_monspecs *specs,
795795
struct list_head *head);
796796

797-
/* drivers/video/fbcmap.c */
797+
/* fbcmap.c */
798798
extern int fb_alloc_cmap(struct fb_cmap *cmap, int len, int transp);
799799
extern int fb_alloc_cmap_gfp(struct fb_cmap *cmap, int len, int transp, gfp_t flags);
800800
extern void fb_dealloc_cmap(struct fb_cmap *cmap);

0 commit comments

Comments
 (0)