From 4a33f10ea4d9b39e2643252f7c3b6b5b11019900 Mon Sep 17 00:00:00 2001 From: Kyungmin Park Date: Thu, 28 Jan 2010 20:10:09 +0900 Subject: [PATCH] s5pc110: aquila: Make a simple codes Signed-off-by: Kyungmin Park --- board/samsung/universal/universal.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/board/samsung/universal/universal.c b/board/samsung/universal/universal.c index 6d15f9e..8495f41 100644 --- a/board/samsung/universal/universal.c +++ b/board/samsung/universal/universal.c @@ -1171,9 +1171,16 @@ static void setup_power_down_mode_registers(void) if (cpu_is_s5pc100()) return; - if (!(machine_is_aquila() && board_is_limo_real()) && !board_is_aries()) { + /* Only Limo real and aries supports worked for sleep currnet */ + if (machine_is_aquila()) { + if (board_is_limo_real()) + /* Support */; + else if (board_is_aries()) + /* Support */; + else + return; + } else return; - } if (board_is_aries()) { /* Aquila rev 0.9 */ -- 2.7.4