Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Alexey Mednyy
mainline_linux
Commits
dde1bf88
Commit
dde1bf88
authored
Jan 14, 2016
by
Alexey Mednyy
🆖
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix regression no port@%d node in ipu
parent
7a623a27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
drivers/gpu/ipu-v3/ipu-common.c
drivers/gpu/ipu-v3/ipu-common.c
+4
-4
No files found.
drivers/gpu/ipu-v3/ipu-common.c
View file @
dde1bf88
...
...
@@ -1066,10 +1066,10 @@ static int ipu_add_client_devices(struct ipu_soc *ipu, unsigned long ipu_base)
/* Associate subdevice with the corresponding port node */
pdev
->
dev
.
of_node
=
of_graph_get_port_by_id
(
dev
->
of_node
,
i
);
if
(
!
pdev
->
dev
.
of_node
)
{
dev_
err
(
dev
,
"
missing
port@%d node in %s
\n
"
,
i
,
dev
->
of_node
->
full_name
);
ret
=
-
ENODEV
;
goto
err_register
;
dev_
info
(
dev
,
"
no
port@%d node in %s
, not using %s%d
\n
"
,
i
,
dev
->
of_node
->
full_name
,
(
i
/
2
)
?
"DI"
:
"CSI"
,
i
%
2
)
;
continue
;
}
ret
=
platform_device_add_data
(
pdev
,
&
reg
->
pdata
,
...
...
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