diff options
author | Roger Monk <r-monk@ti.com> | 2010-06-30 18:10:33 +0100 |
---|---|---|
committer | Koen Kooi <k-kooi@ti.com> | 2010-07-01 08:55:23 +0200 |
commit | 20cb868f676822fc91e4ecfa459eabece2ef7e71 (patch) | |
tree | 46da584fa8c74e0b2cfe373ebbf7d39b06f53aea /recipes/x-load/x-load-1.41/0016-mmc-fix-infinite-loop-in-mmc_init_stream.patch | |
parent | e83c964ee87ff9d6b3342dc25fcf1528cd0ac7e8 (diff) |
x-load: Remove early (alpha) am3517 x-loader recipes and files
* 1.41 for am3517 was test build - remove
Signed-off-by: Roger Monk <r-monk@ti.com>
Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/x-load/x-load-1.41/0016-mmc-fix-infinite-loop-in-mmc_init_stream.patch')
-rw-r--r-- | recipes/x-load/x-load-1.41/0016-mmc-fix-infinite-loop-in-mmc_init_stream.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/recipes/x-load/x-load-1.41/0016-mmc-fix-infinite-loop-in-mmc_init_stream.patch b/recipes/x-load/x-load-1.41/0016-mmc-fix-infinite-loop-in-mmc_init_stream.patch deleted file mode 100644 index 1f9b069f66..0000000000 --- a/recipes/x-load/x-load-1.41/0016-mmc-fix-infinite-loop-in-mmc_init_stream.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 47f5d8f6f659848e164b6151c1dac36fdd4eb7a1 Mon Sep 17 00:00:00 2001 -From: Steve Sakoman <steve@sakoman.com> -Date: Fri, 1 Aug 2008 12:55:44 -0700 -Subject: [PATCH] mmc: fix infinite loop in mmc_init_stream - ---- - cpu/omap3/mmc.c | 11 ++++++++--- - 1 files changed, 8 insertions(+), 3 deletions(-) - -diff --git a/cpu/omap3/mmc.c b/cpu/omap3/mmc.c -index 2453477..279e2a2 100755 ---- a/cpu/omap3/mmc.c -+++ b/cpu/omap3/mmc.c -@@ -60,16 +60,21 @@ unsigned char mmc_board_init(void) - - void mmc_init_stream(void) - { -+ volatile unsigned int mmc_stat; -+ - OMAP_HSMMC_CON |= INIT_INITSTREAM; - - OMAP_HSMMC_CMD = MMC_CMD0; -- while (!(OMAP_HSMMC_STAT & CC_MASK)); -+ do { -+ mmc_stat = OMAP_HSMMC_STAT; -+ } while (!(mmc_stat & CC_MASK)); - - OMAP_HSMMC_STAT = CC_MASK; - - OMAP_HSMMC_CMD = MMC_CMD0; -- while (!(OMAP_HSMMC_STAT & CC_MASK)); -- -+ do { -+ mmc_stat = OMAP_HSMMC_STAT; -+ } while (!(mmc_stat & CC_MASK)); - - OMAP_HSMMC_STAT = OMAP_HSMMC_STAT; - OMAP_HSMMC_CON &= ~INIT_INITSTREAM; --- -1.5.4.3 - |