Title: [3770] trunk/arch/blackfin/kernel/traps.c: [#3631] Mike pointed out I should be using < not <= for checking END address
Revision
3770
Author
rgetz
Date
2007-10-24 12:13:07 -0500 (Wed, 24 Oct 2007)

Log Message

[#3631] Mike pointed out I should be using < not <= for checking END address

Diffstat

 traps.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Modified Paths

Diff

Modified: trunk/arch/blackfin/kernel/traps.c (3769 => 3770)


--- trunk/arch/blackfin/kernel/traps.c	2007-10-24 17:05:09 UTC (rev 3769)
+++ trunk/arch/blackfin/kernel/traps.c	2007-10-24 17:13:07 UTC (rev 3770)
@@ -97,7 +97,7 @@
 #endif
 
 	/* Problem in fixed code section? */
-	if (address >= FIXED_CODE_START && address <= FIXED_CODE_END) {
+	if (address >= FIXED_CODE_START && address < FIXED_CODE_END) {
 		sprintf(buf, "<0x%p> /* Maybe fixed code section */", (void *)address);
 		return;
 	}
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
http://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to