Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 287738
b: refs/heads/master
c: 1e056dd
h: refs/heads/master
v: v3
  • Loading branch information
Paul Walmsley authored and Tony Lindgren committed Feb 10, 2012
1 parent 2d8fd58 commit 1c840db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3686396410e41d97356924b246aced7c86e29ca0
refs/heads/master: 1e056dddabc1b7a909d1f992fefb1d5d5bc8ff0d
8 changes: 1 addition & 7 deletions trunk/arch/arm/mach-omap2/pm24xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,7 @@ static int omap2_fclks_active(void)
f1 = omap2_cm_read_mod_reg(CORE_MOD, CM_FCLKEN1);
f2 = omap2_cm_read_mod_reg(CORE_MOD, OMAP24XX_CM_FCLKEN2);

/* Ignore UART clocks. These are handled by UART core (serial.c) */
f1 &= ~(OMAP24XX_EN_UART1_MASK | OMAP24XX_EN_UART2_MASK);
f2 &= ~OMAP24XX_EN_UART3_MASK;

if (f1 | f2)
return 1;
return 0;
return (f1 | f2) ? 1 : 0;
}

static void omap2_enter_full_retention(void)
Expand Down

0 comments on commit 1c840db

Please sign in to comment.