2008-12-17 17:49:19

by Jaswinder Singh Rajput

[permalink] [raw]
Subject: [PATCH] x86: time_64.c timer_interrupt should be static

Impact: cleanup, reduce kernel size a bit

Signed-off-by: Jaswinder Singh <[email protected]>
---
arch/x86/kernel/time_64.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c
index 1749cac..891e7a7 100644
--- a/arch/x86/kernel/time_64.c
+++ b/arch/x86/kernel/time_64.c
@@ -49,7 +49,7 @@ unsigned long profile_pc(struct pt_regs *regs)
}
EXPORT_SYMBOL(profile_pc);

-irqreturn_t timer_interrupt(int irq, void *dev_id)
+static irqreturn_t timer_interrupt(int irq, void *dev_id)
{
inc_irq_stat(irq0_irqs);

--
1.5.5.1



2008-12-18 12:36:58

by Ingo Molnar

[permalink] [raw]
Subject: Re: [PATCH] x86: time_64.c timer_interrupt should be static


* Jaswinder Singh <[email protected]> wrote:

> Impact: cleanup, reduce kernel size a bit
>
> Signed-off-by: Jaswinder Singh <[email protected]>
> ---
> arch/x86/kernel/time_64.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)

applied to tip/x86/cleanups, thanks Jaswinder!

Ingo