Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
reform-boundary-uboot
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Reform
reform-boundary-uboot
Commits
85933d2b
Commit
85933d2b
authored
9 years ago
by
Troy Kisky
Browse files
Options
Downloads
Patches
Plain Diff
mxc_ipuv3_fb: add board_video_enable callback
parent
ea1440a2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
drivers/video/mxc_ipuv3_fb.c
+8
-1
8 additions, 1 deletion
drivers/video/mxc_ipuv3_fb.c
drivers/video/mxcfb.h
+2
-0
2 additions, 0 deletions
drivers/video/mxcfb.h
with
10 additions
and
1 deletion
drivers/video/mxc_ipuv3_fb.c
+
8
−
1
View file @
85933d2b
...
...
@@ -603,10 +603,17 @@ void ipuv3_fb_shutdown(void)
g_dp_in_use
=
0
;
}
static
void
__board_video_enable
(
void
)
{
}
void
board_video_enable
(
void
)
__attribute__
((
weak
,
alias
(
"__board_video_enable"
)));
void
*
ipuv3_fb_init2
(
void
)
{
mxcfb_probe
(
gpixfmt
,
gdisp
,
gmode
);
board_video_enable
();
debug
(
"Framebuffer at 0x%x
\n
"
,
(
unsigned
int
)
panel
.
frameAdrs
);
return
(
void
*
)
&
panel
;
}
...
...
This diff is collapsed.
Click to expand it.
drivers/video/mxcfb.h
+
2
−
0
View file @
85933d2b
...
...
@@ -48,4 +48,6 @@ struct mxcfb_gamma {
int
slopek
[
16
];
};
void
board_video_enable
(
void
);
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment