[PATCH 14/29] kernel/sys.c NULL noise removal

From: Al Viro
Date: Tue Feb 07 2006 - 22:23:21 EST


Date: 1138791452 -0500

Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx>

---

kernel/sys.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

4bb8089c86b95b4f6bbd839cb83ca4556b06a031
diff --git a/kernel/sys.c b/kernel/sys.c
index 0929c69..f91218a 100644
--- a/kernel/sys.c
+++ b/kernel/sys.c
@@ -428,7 +428,7 @@ void kernel_kexec(void)
{
#ifdef CONFIG_KEXEC
struct kimage *image;
- image = xchg(&kexec_image, 0);
+ image = xchg(&kexec_image, NULL);
if (!image) {
return;
}
--
0.99.9.GIT

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/