Skip to content

Commit f8223b0

Browse files
committed
linux/fb.h: Remove extraneous extern keywords
Sponsored by: Future Crew LLC
1 parent 26be83c commit f8223b0

File tree

1 file changed

+6
-6
lines changed
  • linuxkpi/gplv2/include/linux

1 file changed

+6
-6
lines changed

linuxkpi/gplv2/include/linux/fb.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,12 @@ struct linux_fb_info {
149149
* `Generic' versions of the frame buffer device operations
150150
*/
151151

152-
extern void cfb_fillrect(struct linux_fb_info *info, const struct fb_fillrect *rect);
153-
extern void cfb_copyarea(struct linux_fb_info *info, const struct fb_copyarea *area);
154-
extern void cfb_imageblit(struct linux_fb_info *info, const struct fb_image *image);
155-
extern ssize_t fb_io_read(struct linux_fb_info *info, char __user *buf,
152+
void cfb_fillrect(struct linux_fb_info *info, const struct fb_fillrect *rect);
153+
void cfb_copyarea(struct linux_fb_info *info, const struct fb_copyarea *area);
154+
void cfb_imageblit(struct linux_fb_info *info, const struct fb_image *image);
155+
ssize_t fb_io_read(struct linux_fb_info *info, char __user *buf,
156156
size_t count, loff_t *ppos);
157-
extern ssize_t fb_io_write(struct linux_fb_info *info, const char __user *buf,
157+
ssize_t fb_io_write(struct linux_fb_info *info, const char __user *buf,
158158
size_t count, loff_t *ppos);
159159

160160
/*
@@ -213,7 +213,7 @@ fb_sys_write(struct linux_fb_info *info, const char __user *buf, size_t count,
213213
return (fb_io_write(info, buf, count, ppos));
214214
}
215215

216-
extern int fb_deferred_io_mmap(struct linux_fb_info *info,
216+
int fb_deferred_io_mmap(struct linux_fb_info *info,
217217
struct vm_area_struct *vma);
218218

219219
/*

0 commit comments

Comments
 (0)