All of lore.kernel.org
 help / color / mirror / Atom feed
diff for duplicates of <20090928163908.GD18957@atomide.com>

diff --git a/a/2.hdr b/a/2.hdr
deleted file mode 100644
index cb951be..0000000
--- a/a/2.hdr
+++ /dev/null
@@ -1,2 +0,0 @@
-Content-Type: text/plain; charset=us-ascii
-Content-Disposition: inline; filename=out
diff --git a/a/2.txt b/a/2.txt
deleted file mode 100644
index 7fc7cfe..0000000
--- a/a/2.txt
+++ /dev/null
@@ -1,38 +0,0 @@
->From 055c49d285a151ccb91d63bac6d8621be3db5c93 Mon Sep 17 00:00:00 2001
-From: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
-Date: Mon, 28 Sep 2009 09:21:26 -0700
-Subject: [PATCH] omap: Fix wrong condition check in while loop for mailbox and iommu2
-
-It's worked fine so far since reset is done for the first time.
-
-Reported-by: Juha Leppanen <juha_motorsportcom@luukku.com>
-Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>
-Signed-off-by: Juha Leppanen <juha_motorsportcom@luukku.com>
-Signed-off-by: Tony Lindgren <tony@atomide.com>
-
-diff --git a/arch/arm/mach-omap2/iommu2.c b/arch/arm/mach-omap2/iommu2.c
-index 2d9b5cc..4a0e1cd 100644
---- a/arch/arm/mach-omap2/iommu2.c
-+++ b/arch/arm/mach-omap2/iommu2.c
-@@ -79,7 +79,7 @@ static int omap2_iommu_enable(struct iommu *obj)
- 		l = iommu_read_reg(obj, MMU_SYSSTATUS);
- 		if (l & MMU_SYS_RESETDONE)
- 			break;
--	} while (time_after(jiffies, timeout));
-+	} while (!time_after(jiffies, timeout));
- 
- 	if (!(l & MMU_SYS_RESETDONE)) {
- 		dev_err(obj->dev, "can't take mmu out of reset\n");
-diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c
-index f3fefca..c035ad3 100644
---- a/arch/arm/mach-omap2/mailbox.c
-+++ b/arch/arm/mach-omap2/mailbox.c
-@@ -93,7 +93,7 @@ static int omap2_mbox_startup(struct omap_mbox *mbox)
- 		l = mbox_read_reg(MAILBOX_SYSSTATUS);
- 		if (l & RESETDONE)
- 			break;
--	} while (time_after(jiffies, timeout));
-+	} while (!time_after(jiffies, timeout));
- 
- 	if (!(l & RESETDONE)) {
- 		pr_err("Can't take mmu out of reset\n");
diff --git a/a/content_digest b/N1/content_digest
index eed455a..f4a70bf 100644
--- a/a/content_digest
+++ b/N1/content_digest
@@ -1,11 +1,10 @@
  "ref\020090924233027.6065.95725.stgit@localhost\0"
  "ref\020090928162657.GC18957@atomide.com\0"
- "From\0Tony Lindgren <tony@atomide.com>\0"
- "Subject\0Re: [PATCH 13/12] omap: Fix wrong condition check in while loop for mailbox and iommu2\0"
+ "From\0tony@atomide.com (Tony Lindgren)\0"
+ "Subject\0[PATCH 13/12] omap: Fix wrong condition check in while loop for mailbox and iommu2\0"
  "Date\0Mon, 28 Sep 2009 09:39:08 -0700\0"
  "To\0linux-arm-kernel@lists.infradead.org\0"
- "Cc\0linux-omap@vger.kernel.org\0"
- "\01:1\0"
+ "\00:1\0"
  "b\0"
  "* Tony Lindgren <tony@atomide.com> [090928 09:28]:\n"
  "> Here's one more fix for this series.\n"
@@ -15,46 +14,5 @@
  "into a single patch.\n"
  "\n"
  Tony
- "\01:2\0"
- "fn\0out\0"
- "b\0"
- ">From 055c49d285a151ccb91d63bac6d8621be3db5c93 Mon Sep 17 00:00:00 2001\n"
- "From: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>\n"
- "Date: Mon, 28 Sep 2009 09:21:26 -0700\n"
- "Subject: [PATCH] omap: Fix wrong condition check in while loop for mailbox and iommu2\n"
- "\n"
- "It's worked fine so far since reset is done for the first time.\n"
- "\n"
- "Reported-by: Juha Leppanen <juha_motorsportcom@luukku.com>\n"
- "Signed-off-by: Hiroshi DOYU <Hiroshi.DOYU@nokia.com>\n"
- "Signed-off-by: Juha Leppanen <juha_motorsportcom@luukku.com>\n"
- "Signed-off-by: Tony Lindgren <tony@atomide.com>\n"
- "\n"
- "diff --git a/arch/arm/mach-omap2/iommu2.c b/arch/arm/mach-omap2/iommu2.c\n"
- "index 2d9b5cc..4a0e1cd 100644\n"
- "--- a/arch/arm/mach-omap2/iommu2.c\n"
- "+++ b/arch/arm/mach-omap2/iommu2.c\n"
- "@@ -79,7 +79,7 @@ static int omap2_iommu_enable(struct iommu *obj)\n"
- " \t\tl = iommu_read_reg(obj, MMU_SYSSTATUS);\n"
- " \t\tif (l & MMU_SYS_RESETDONE)\n"
- " \t\t\tbreak;\n"
- "-\t} while (time_after(jiffies, timeout));\n"
- "+\t} while (!time_after(jiffies, timeout));\n"
- " \n"
- " \tif (!(l & MMU_SYS_RESETDONE)) {\n"
- " \t\tdev_err(obj->dev, \"can't take mmu out of reset\\n\");\n"
- "diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c\n"
- "index f3fefca..c035ad3 100644\n"
- "--- a/arch/arm/mach-omap2/mailbox.c\n"
- "+++ b/arch/arm/mach-omap2/mailbox.c\n"
- "@@ -93,7 +93,7 @@ static int omap2_mbox_startup(struct omap_mbox *mbox)\n"
- " \t\tl = mbox_read_reg(MAILBOX_SYSSTATUS);\n"
- " \t\tif (l & RESETDONE)\n"
- " \t\t\tbreak;\n"
- "-\t} while (time_after(jiffies, timeout));\n"
- "+\t} while (!time_after(jiffies, timeout));\n"
- " \n"
- " \tif (!(l & RESETDONE)) {\n"
- " \t\tpr_err(\"Can't take mmu out of reset\\n\");"
 
-26701a752a8f1205797ca4fc9db302f474115573383036f60507ce0e283a3163
+9d3875052b36a85e84eb70e2fdf1b2d490db502c476061260c576f6b9fb61989

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.