Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Linux Next
Manage
Activity
Members
Labels
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
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
Cristian Ciocaltea
Linux Next
Commits
a2cb960f
Commit
a2cb960f
authored
12 years ago
by
Tony Lindgren
Browse files
Options
Downloads
Plain Diff
Merge branch 'fix-dss-mux' into fixes
parents
335aece5
e8a30b25
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
arch/arm/mach-omap2/display.c
+4
-4
4 additions, 4 deletions
arch/arm/mach-omap2/display.c
with
4 additions
and
4 deletions
arch/arm/mach-omap2/display.c
+
4
−
4
View file @
a2cb960f
...
...
@@ -99,7 +99,7 @@ static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initdata = {
{
"dss_hdmi"
,
"omapdss_hdmi"
,
-
1
},
};
static
void
omap4_hdmi_mux_pads
(
enum
omap_hdmi_flags
flags
)
static
void
__init
omap4_hdmi_mux_pads
(
enum
omap_hdmi_flags
flags
)
{
u32
reg
;
u16
control_i2c_1
;
...
...
@@ -125,7 +125,7 @@ static void omap4_hdmi_mux_pads(enum omap_hdmi_flags flags)
}
}
static
int
__init
omap4_dsi_mux_pads
(
int
dsi_id
,
unsigned
lanes
)
static
int
omap4_dsi_mux_pads
(
int
dsi_id
,
unsigned
lanes
)
{
u32
enable_mask
,
enable_shift
;
u32
pipd_mask
,
pipd_shift
;
...
...
@@ -166,7 +166,7 @@ int __init omap_hdmi_init(enum omap_hdmi_flags flags)
return
0
;
}
static
int
__init
omap_dsi_enable_pads
(
int
dsi_id
,
unsigned
lane_mask
)
static
int
omap_dsi_enable_pads
(
int
dsi_id
,
unsigned
lane_mask
)
{
if
(
cpu_is_omap44xx
())
return
omap4_dsi_mux_pads
(
dsi_id
,
lane_mask
);
...
...
@@ -174,7 +174,7 @@ static int __init omap_dsi_enable_pads(int dsi_id, unsigned lane_mask)
return
0
;
}
static
void
__init
omap_dsi_disable_pads
(
int
dsi_id
,
unsigned
lane_mask
)
static
void
omap_dsi_disable_pads
(
int
dsi_id
,
unsigned
lane_mask
)
{
if
(
cpu_is_omap44xx
())
omap4_dsi_mux_pads
(
dsi_id
,
0
);
...
...
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