From: Adrian Bunk Date: Mon, 26 May 2008 22:31:17 +0000 (+0100) Subject: xen: drivers/xen/balloon.c: make a function static X-Git-Tag: v2.6.27-rc1~1102^2~253^24~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=955d6f1778da5a9795f2dfb07f760006f194609a;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git xen: drivers/xen/balloon.c: make a function static Make the needlessly global balloon_set_new_target() static. Signed-off-by: Adrian Bunk Acked-by: Chris Wright Signed-off-by: Andrew Morton Signed-off-by: Thomas Gleixner --- diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c index 097ba02..591bc29 100644 --- a/drivers/xen/balloon.c +++ b/drivers/xen/balloon.c @@ -368,7 +368,7 @@ static void balloon_process(struct work_struct *work) } /* Resets the Xen limit, sets new target, and kicks off processing. */ -void balloon_set_new_target(unsigned long target) +static void balloon_set_new_target(unsigned long target) { /* No need for lock. Not read-modify-write updates. */ balloon_stats.hard_limit = ~0UL;