Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=1387d0d8b002c8ce90412fb2695ec6085eb8ce01
Commit:     1387d0d8b002c8ce90412fb2695ec6085eb8ce01
Parent:     2ebda63b09a4e2232effb7a37e609651fe221090
Author:     Adrian Bunk <[EMAIL PROTECTED]>
AuthorDate: Thu Feb 14 19:31:20 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Thu Feb 14 20:58:04 2008 -0800

    fix module_update_markers() compile error
    
    This patch fixes the following compile error with CONFIG_MODULES=n
    caused by commit fb40bd78b0f91b274879cf5db8facd1e04b6052e:
    
    /home/bunk/linux/kernel-2.6/git/linux-2.6/kernel/marker.c: In function 
`marker_update_probes':
    /home/bunk/linux/kernel-2.6/git/linux-2.6/kernel/marker.c:627: error: too 
few arguments to function `module_update_markers'
    
    Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]>
    Acked-by: Mathieu Desnoyers <[EMAIL PROTECTED]>
    Cc: Paul Mundt <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 include/linux/module.h |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/include/linux/module.h b/include/linux/module.h
index 330bec0..819c4e8 100644
--- a/include/linux/module.h
+++ b/include/linux/module.h
@@ -567,8 +567,7 @@ static inline void print_modules(void)
 {
 }
 
-static inline void module_update_markers(struct module *probe_module,
-               int *refcount)
+static inline void module_update_markers(void)
 {
 }
 
-
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