Title: [6822] trunk/arch/blackfin/kernel/process.c: access_ok: fix build error from previous unification when CONFIG_MTD_UCLINUX is defined
Revision
6822
Author
vapier
Date
2009-06-22 08:21:31 -0500 (Mon, 22 Jun 2009)

Log Message

access_ok: fix build error from previous unification when CONFIG_MTD_UCLINUX is defined

Modified Paths

Diff

Modified: trunk/arch/blackfin/kernel/process.c (6821 => 6822)


--- trunk/arch/blackfin/kernel/process.c	2009-06-22 11:40:06 UTC (rev 6821)
+++ trunk/arch/blackfin/kernel/process.c	2009-06-22 13:21:31 UTC (rev 6822)
@@ -416,7 +416,9 @@
 		return 0;
 	if (segment_eq(get_fs(), KERNEL_DS))
 		return 1;
-#ifndef CONFIG_MTD_UCLINUX
+#ifdef CONFIG_MTD_UCLINUX
+	if (1)
+#else
 	if (0)
 #endif
 	{
_______________________________________________
Linux-kernel-commits mailing list
[email protected]
https://blackfin.uclinux.org/mailman/listinfo/linux-kernel-commits

Reply via email to