Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0ec160dd48b666ddef39d639323d0da26d0b710d
Commit:     0ec160dd48b666ddef39d639323d0da26d0b710d
Parent:     a5569a565f7315fe7241cf963f2cc74e53871e11
Author:     Randy Dunlap <[EMAIL PROTECTED]>
AuthorDate: Mon Jan 21 17:18:24 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Jan 21 19:39:41 2008 -0800

    hrtimer: fix section mismatch
    
    Fix section mismatch in hrtimer.c:
    
    WARNING: vmlinux.o(.text+0x50c61): Section mismatch: reference to 
.init.text: (between 'hrtimer_cpu_notify' and 'down_read_trylock')
    
    Noticed by Johannes Berg and confirmed by Sam Ravnborg.
    
    Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
    Cc: Sam Ravnborg <[EMAIL PROTECTED]>
    Cc: Ingo Molnar <[EMAIL PROTECTED]>
    Cc: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]@linux-foundation.org>
---
 kernel/hrtimer.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c
index e65dd0b..f994bb8 100644
--- a/kernel/hrtimer.c
+++ b/kernel/hrtimer.c
@@ -1378,7 +1378,7 @@ sys_nanosleep(struct timespec __user *rqtp, struct 
timespec __user *rmtp)
 /*
  * Functions related to boot-time initialization:
  */
-static void __devinit init_hrtimers_cpu(int cpu)
+static void __cpuinit init_hrtimers_cpu(int cpu)
 {
        struct hrtimer_cpu_base *cpu_base = &per_cpu(hrtimer_bases, cpu);
        int i;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to