[PATCH 30/30] return statement cleanup - kill pointless parentheses in kernel/intermodule.c

From: Jesper Juhl
Date: Wed Dec 15 2004 - 20:10:42 EST





This patch removes pointless parentheses from return statements in kernel/intermodule.c


Signed-off-by: Jesper Juhl <juhl-lkml@xxxxxx>




--- linux-2.6.10-rc3-bk8-orig/kernel/intermodule.c 2004-10-18 23:53:05.000000000 +0200
+++ linux-2.6.10-rc3-bk8/kernel/intermodule.c 2004-12-16 00:06:30.000000000 +0100
@@ -129,7 +129,7 @@ const void *inter_module_get(const char
}
}
spin_unlock(&ime_lock);
- return(result);
+ return result;
}

/**
@@ -146,7 +146,7 @@ const void *inter_module_get_request(con
request_module("%s", modname);
result = inter_module_get(im_name);
}
- return(result);
+ return result;
}

/**







-
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/