From: Konrad Rzeszutek Wilk Date: Fri, 12 Oct 2012 18:36:56 +0000 (-0400) Subject: xen/xenbus: Fix compile warning. X-Git-Tag: upstream/snapshot3+hdmi~6229^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e9d1aa05da264cf7e1906b81a90d6abfdbe3700b;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git xen/xenbus: Fix compile warning. We were missing the 'void' on the parameter arguments. Reported-by: Fengguang Wu Signed-off-by: Konrad Rzeszutek Wilk --- diff --git a/drivers/xen/xenbus/xenbus_xs.c b/drivers/xen/xenbus/xenbus_xs.c index 48220e1..f5dda83 100644 --- a/drivers/xen/xenbus/xenbus_xs.c +++ b/drivers/xen/xenbus/xenbus_xs.c @@ -625,7 +625,7 @@ static struct xenbus_watch *find_watch(const char *token) * so if we are running on anything older than 4 do not attempt to read * control/platform-feature-xs_reset_watches. */ -static bool xen_strict_xenbus_quirk() +static bool xen_strict_xenbus_quirk(void) { uint32_t eax, ebx, ecx, edx, base;