Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
acdc277a
Commit
acdc277a
authored
Dec 26, 2002
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[FB] fb_blank is an fbops hook, not a standalone function.
parent
1af3131d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
drivers/video/console/fbcon.c
drivers/video/console/fbcon.c
+1
-1
include/linux/fb.h
include/linux/fb.h
+0
-1
No files found.
drivers/video/console/fbcon.c
View file @
acdc277a
...
...
@@ -1993,7 +1993,7 @@ static int fbcon_blank(struct vc_data *vc, int blank)
update_screen
(
vc
->
vc_num
);
return
0
;
}
else
return
fb_blank
(
blank
,
info
);
return
info
->
fbops
->
fb_blank
(
blank
,
info
);
}
static
void
fbcon_free_font
(
struct
display
*
p
)
...
...
include/linux/fb.h
View file @
acdc277a
...
...
@@ -449,7 +449,6 @@ struct fb_info {
extern
int
fb_set_var
(
struct
fb_var_screeninfo
*
var
,
struct
fb_info
*
info
);
extern
int
fb_pan_display
(
struct
fb_var_screeninfo
*
var
,
struct
fb_info
*
info
);
extern
int
fb_blank
(
int
blank
,
struct
fb_info
*
info
);
extern
int
soft_cursor
(
struct
fb_info
*
info
,
struct
fb_cursor
*
cursor
);
extern
void
cfb_fillrect
(
struct
fb_info
*
info
,
struct
fb_fillrect
*
rect
);
extern
void
cfb_copyarea
(
struct
fb_info
*
info
,
struct
fb_copyarea
*
area
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment