public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] moduleparam: Resolve missing-field-initializer warning
@ 2014-08-29 13:08 Jeff Kirsher
  2014-09-01  0:52 ` Rusty Russell
  0 siblings, 1 reply; 4+ messages in thread
From: Jeff Kirsher @ 2014-08-29 13:08 UTC (permalink / raw)
  To: rusty; +Cc: Mark Rustad, linux-kernel, Jeff Kirsher

From: Mark Rustad <mark.d.rustad@intel.com>

Resolve a missing-field-initializer warning, that is produced
by every reference to module_param_call, by using designated
initialization for the first field. That is enough to silence
the complaint.

Signed-off-by: Mark Rustad <mark.d.rustad@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
---
 include/linux/moduleparam.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/moduleparam.h b/include/linux/moduleparam.h
index 494f99e..d99a9e9 100644
--- a/include/linux/moduleparam.h
+++ b/include/linux/moduleparam.h
@@ -196,7 +196,7 @@ struct kparam_array
 /* Obsolete - use module_param_cb() */
 #define module_param_call(name, set, get, arg, perm)			\
 	static struct kernel_param_ops __param_ops_##name =		\
-		{ 0, (void *)set, (void *)get };			\
+		{ .flags = 0, (void *)set, (void *)get };		\
 	__module_param_call(MODULE_PARAM_PREFIX,			\
 			    name, &__param_ops_##name, arg,		\
 			    (perm) + sizeof(__check_old_set_param(set))*0, -1)
-- 
1.9.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-09-05  2:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-29 13:08 [PATCH] moduleparam: Resolve missing-field-initializer warning Jeff Kirsher
2014-09-01  0:52 ` Rusty Russell
2014-09-02 18:01   ` Rustad, Mark D
2014-09-05  1:52     ` Rusty Russell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox