projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
33e1e5e
)
davinci: DM365 EVM: fix video input mux bits
author
Jon Povey
<
[email protected]
>
Tue, 19 Jul 2011 03:30:11 +0000
(12:30 +0900)
committer
Sekhar Nori
<
[email protected]
>
Tue, 19 Jul 2011 08:30:29 +0000
(14:00 +0530)
Video input mux settings for tvp7002 and imager inputs were swapped.
Comment was correct.
Tested on EVM with tvp7002 input.
Signed-off-by: Jon Povey <
[email protected]
>
Acked-by: Manjunath Hadli <
[email protected]
>
Cc:
[email protected]
Signed-off-by: Sekhar Nori <
[email protected]
>
arch/arm/mach-davinci/board-dm365-evm.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-davinci/board-dm365-evm.c
b/arch/arm/mach-davinci/board-dm365-evm.c
index c67f684ee3e58e219a182c55624e902e069e666b..09a87e61ffcf451dfe76ab10e6fd1ba58c5a3834 100644
(file)
--- a/
arch/arm/mach-davinci/board-dm365-evm.c
+++ b/
arch/arm/mach-davinci/board-dm365-evm.c
@@
-520,7
+520,7
@@
fail:
*/
if (have_imager()) {
label = "HD imager";
- mux |=
1
;
+ mux |=
2
;
/* externally mux MMC1/ENET/AIC33 to imager */
mux |= BIT(6) | BIT(5) | BIT(3);
@@
-540,7
+540,7
@@
fail:
resets &= ~BIT(1);
if (have_tvp7002()) {
- mux |=
2
;
+ mux |=
1
;
resets &= ~BIT(2);
label = "tvp7002 HD";
} else {