* PATCH: module.h - silence "statement with no effect" warnings 2.5.53-bk
@ 2002-12-30 13:01 Muli Ben-Yehuda
0 siblings, 0 replies; only message in thread
From: Muli Ben-Yehuda @ 2002-12-30 13:01 UTC (permalink / raw)
To: Linux-Kernel; +Cc: Rusty Russell
2.5.53-bk complains about "statement with no effect" in module.h in
multiple files including module.h. This patch shuts it up.
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.973 -> 1.974
# include/linux/module.h 1.32 -> 1.33
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/12/30 mulix@alhambra.mulix.org 1.974
# get rid of "statement has no effect" warnings from gcc
# --------------------------------------------
#
diff -Nru a/include/linux/module.h b/include/linux/module.h
--- a/include/linux/module.h Mon Dec 30 14:10:56 2002
+++ b/include/linux/module.h Mon Dec 30 14:10:56 2002
@@ -311,7 +311,7 @@
/*
* Yes, we ignore the retval here, that's why it's deprecated.
*/
- try_module_get(module);
+ (void)try_module_get(module);
}
static inline void __deprecated __MOD_DEC_USE_COUNT(struct module *module)
@@ -347,7 +347,7 @@
local_inc(&module->ref[get_cpu()].count);
put_cpu();
#else
- try_module_get(module);
+ (void)try_module_get(module);
#endif
}
#define MOD_INC_USE_COUNT \
--
Muli Ben-Yehuda
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2002-12-30 12:44 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-12-30 13:01 PATCH: module.h - silence "statement with no effect" warnings 2.5.53-bk Muli Ben-Yehuda
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox