]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: sm7xx: rename function
authorJavier M. Mellid <jmunhoz@igalia.com>
Thu, 26 Apr 2012 18:45:55 +0000 (20:45 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Apr 2012 01:32:20 +0000 (21:32 -0400)
This patch changes the name of function cfb_blank to smtc_blank. This
function is not implemented like a generic function for frame buffer.
Having the old prefix becomes confused when reading fb_ops structs.

Tested with SM712

Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm7xx/smtcfb.c

index 83756a89b66f80ed10f910e3465e9e333b27518a..746c4cd5d30ef2729d252f4566500f67ad1d7db9 100644 (file)
@@ -266,7 +266,7 @@ static inline unsigned int chan_to_field(unsigned int chan,
        return chan << bf->offset;
 }
 
-static int cfb_blank(int blank_mode, struct fb_info *info)
+static int smtc_blank(int blank_mode, struct fb_info *info)
 {
        /* clear DPMS setting */
        switch (blank_mode) {
@@ -653,7 +653,7 @@ static struct fb_ops smtcfb_ops = {
        .fb_check_var = smtc_check_var,
        .fb_set_par   = smtc_set_par,
        .fb_setcolreg = smtc_setcolreg,
-       .fb_blank     = cfb_blank,
+       .fb_blank     = smtc_blank,
        .fb_fillrect  = cfb_fillrect,
        .fb_imageblit = cfb_imageblit,
        .fb_copyarea  = cfb_copyarea,