• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

linux-3.0.x for AP-SH4A-0A Board


Commit MetaInfo

Revisão9daedd833a38edd90cf7baa1b1fcf61c3a0721e3 (tree)
Hora2011-07-19 17:30:29
AutorJon Povey <jon.povey@race...>
CommiterSekhar Nori

Mensagem de Log

davinci: DM365 EVM: fix video input mux bits

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 <jon.povey@racelogic.co.uk>
Acked-by: Manjunath Hadli <manjunath.hadli@ti.com>
Cc: stable@kernel.org
Signed-off-by: Sekhar Nori <nsekhar@ti.com>

Mudança Sumário

Diff

--- a/arch/arm/mach-davinci/board-dm365-evm.c
+++ b/arch/arm/mach-davinci/board-dm365-evm.c
@@ -520,7 +520,7 @@ fail:
520520 */
521521 if (have_imager()) {
522522 label = "HD imager";
523- mux |= 1;
523+ mux |= 2;
524524
525525 /* externally mux MMC1/ENET/AIC33 to imager */
526526 mux |= BIT(6) | BIT(5) | BIT(3);
@@ -540,7 +540,7 @@ fail:
540540 resets &= ~BIT(1);
541541
542542 if (have_tvp7002()) {
543- mux |= 2;
543+ mux |= 1;
544544 resets &= ~BIT(2);
545545 label = "tvp7002 HD";
546546 } else {