On Sat, 2012-07-07 at 20:47 +0200, Emil Goode wrote: > Sparse is warning about non-ANSI function declaration. > Add void to the parameterless function. > > net/core/dev.c:1804:38: warning: > non-ANSI function declaration of function > 'netif_get_num_default_rss_queues' I also posted a patch for this (and another instance I found). Ben. > Signed-off-by: Emil Goode <emilgoode@xxxxxxxxx> > --- > net/core/dev.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/net/core/dev.c b/net/core/dev.c > index 07c1251..fc6fbce 100644 > --- a/net/core/dev.c > +++ b/net/core/dev.c > @@ -1801,7 +1801,7 @@ EXPORT_SYMBOL(netif_set_real_num_rx_queues); > * This routine should set an upper limit on the number of RSS queues > * used by default by multiqueue devices. > */ > -int netif_get_num_default_rss_queues() > +int netif_get_num_default_rss_queues(void) > { > return min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus()); > } -- Ben Hutchings, Staff Engineer, Solarflare Not speaking for my employer; that's the marketing department's job. They asked us to note that Solarflare product names are trademarked. -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html