Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7391
b: refs/heads/master
c: 7f4bde9
h: refs/heads/master
i:
  7389: 03446e6
  7387: 722803f
  7383: 32fb39c
  7375: 94eb564
  7359: b1984f2
v: v3
  • Loading branch information
Adrian Bunk authored and Linus Torvalds committed Sep 7, 2005
1 parent 8690826 commit f6f16c1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2832e9366a1fcd6f76957a42157be041240f994e
refs/heads/master: 7f4bde9a3486cd7e70bedd2aff35b38667d50173
5 changes: 2 additions & 3 deletions trunk/arch/i386/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -252,8 +252,7 @@ EXPORT_SYMBOL(profile_pc);
* timer_interrupt() needs to keep up the real-time clock,
* as well as call the "do_timer()" routine every clocktick
*/
static inline void do_timer_interrupt(int irq, void *dev_id,
struct pt_regs *regs)
static inline void do_timer_interrupt(int irq, struct pt_regs *regs)
{
#ifdef CONFIG_X86_IO_APIC
if (timer_ack) {
Expand Down Expand Up @@ -307,7 +306,7 @@ irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)

cur_timer->mark_offset();

do_timer_interrupt(irq, NULL, regs);
do_timer_interrupt(irq, regs);

write_sequnlock(&xtime_lock);
return IRQ_HANDLED;
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/sh/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ static long last_rtc_update;
* timer_interrupt() needs to keep up the real-time clock,
* as well as call the "do_timer()" routine every clocktick
*/
static inline void do_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
static inline void do_timer_interrupt(int irq, struct pt_regs *regs)
{
do_timer(regs);
#ifndef CONFIG_SMP
Expand Down Expand Up @@ -285,7 +285,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
* locally disabled. -arca
*/
write_seqlock(&xtime_lock);
do_timer_interrupt(irq, NULL, regs);
do_timer_interrupt(irq, regs);
write_sequnlock(&xtime_lock);

return IRQ_HANDLED;
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/sh64/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ static long last_rtc_update = 0;
* timer_interrupt() needs to keep up the real-time clock,
* as well as call the "do_timer()" routine every clocktick
*/
static inline void do_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
static inline void do_timer_interrupt(int irq, struct pt_regs *regs)
{
unsigned long long current_ctc;
asm ("getcon cr62, %0" : "=r" (current_ctc));
Expand Down Expand Up @@ -361,7 +361,7 @@ static irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
* locally disabled. -arca
*/
write_lock(&xtime_lock);
do_timer_interrupt(irq, NULL, regs);
do_timer_interrupt(irq, regs);
write_unlock(&xtime_lock);

return IRQ_HANDLED;
Expand Down

0 comments on commit f6f16c1

Please sign in to comment.