sched/deadline: Make the grub_reclaim() function static

Since the grub_reclaim() function can be made static, make it so.

Silences the following GCC warning (W=1):

kernel/sched/deadline.c:1120:5: warning: no previous prototype for ‘grub_reclaim’ [-Wmissing-prototypes]

Signed-off-by: Mathieu Malaterre <malat@debian.org>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/20180516200902.959-1-malat@debian.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by Mathieu Malaterre and committed by Ingo Molnar 3febfc8a f6a34630

+1 -1
+1 -1
kernel/sched/deadline.c
··· 1117 1117 * should be larger than 2^(64 - 20 - 8), which is more than 64 seconds. 1118 1118 * So, overflow is not an issue here. 1119 1119 */ 1120 - u64 grub_reclaim(u64 delta, struct rq *rq, struct sched_dl_entity *dl_se) 1120 + static u64 grub_reclaim(u64 delta, struct rq *rq, struct sched_dl_entity *dl_se) 1121 1121 { 1122 1122 u64 u_inact = rq->dl.this_bw - rq->dl.running_bw; /* Utot - Uact */ 1123 1123 u64 u_act;