Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=79306a340c23e40c94ce16e504d172ae15b24187
Commit:     79306a340c23e40c94ce16e504d172ae15b24187
Parent:     8808117ca571fd63e188a2306baae86cca9fce7a
Author:     Sergio Luis <[EMAIL PROTECTED]>
AuthorDate: Sat Feb 23 15:23:53 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sat Feb 23 17:12:15 2008 -0800

    drivers/video/uvesafb.c: fix section mismatch warning in param_set_scroll()
    
    Fix following warnings:
    WARNING: drivers/video/built-in.o(.text+0x7c64a): Section mismatch in 
reference from the function param_set_scroll() to the variable 
.devinit.data:ypan
    WARNING: drivers/video/built-in.o(.text+0x7c65d): Section mismatch in 
reference from the function param_set_scroll() to the variable 
.devinit.data:ypan
    WARNING: drivers/video/built-in.o(.text+0x7c679): Section mismatch in 
reference from the function param_set_scroll() to the variable 
.devinit.data:ypan
    WARNING: drivers/video/built-in.o(.text+0x7c699): Section mismatch in 
reference from the function param_set_scroll() to the variable 
.devinit.data:ypan
    WARNING: drivers/video/built-in.o(.text+0x7c69f): Section mismatch in 
reference from the function param_set_scroll() to the variable 
.devinit.data:ypan
    WARNING: drivers/built-in.o(.text+0xa3676): Section mismatch in reference 
from the function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: drivers/built-in.o(.text+0xa3689): Section mismatch in reference 
from the function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: drivers/built-in.o(.text+0xa36a5): Section mismatch in reference 
from the function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: drivers/built-in.o(.text+0xa36c5): Section mismatch in reference 
from the function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: drivers/built-in.o(.text+0xa36cb): Section mismatch in reference 
from the function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: vmlinux.o(.text+0x4a079a): Section mismatch in reference from the 
function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: vmlinux.o(.text+0x4a07ad): Section mismatch in reference from the 
function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: vmlinux.o(.text+0x4a07c9): Section mismatch in reference from the 
function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: vmlinux.o(.text+0x4a07e9): Section mismatch in reference from the 
function param_set_scroll() to the variable .devinit.data:ypan
    WARNING: vmlinux.o(.text+0x4a07ef): Section mismatch in reference from the 
function param_set_scroll() to the variable .devinit.data:ypan
    
    Remove __devinitdata annotation from the variable ypan.
    
    Signed-off-by: Sergio Luis <[EMAIL PROTECTED]>
    Cc: Michal Januszewski <[EMAIL PROTECTED]>
    Cc: "Antonino A. Daplas" <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/video/uvesafb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/video/uvesafb.c b/drivers/video/uvesafb.c
index be27b9c..9336165 100644
--- a/drivers/video/uvesafb.c
+++ b/drivers/video/uvesafb.c
@@ -44,7 +44,7 @@ static struct fb_fix_screeninfo uvesafb_fix __devinitdata = {
 
 static int mtrr                __devinitdata = 3; /* enable mtrr by default */
 static int blank       = 1;               /* enable blanking by default */
-static int ypan                __devinitdata = 1; /* 0: scroll, 1: ypan, 2: 
ywrap */
+static int ypan                = 1;             /* 0: scroll, 1: ypan, 2: 
ywrap */
 static int pmi_setpal  __devinitdata = 1; /* use PMI for palette changes */
 static int nocrtc      __devinitdata; /* ignore CRTC settings */
 static int noedid      __devinitdata; /* don't try DDC transfers */
-
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