]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: sm7xxfb: usr fb_read and fb_write
authorSudip Mukherjee <sudipm.mukherjee@gmail.com>
Wed, 15 Jul 2015 08:29:46 +0000 (13:59 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Jul 2015 17:17:08 +0000 (10:17 -0700)
Now since the Big-Endian and Little-Endian based calculations are moved
into a macro we can make fb_read() and fb_write() common for both
Little-Endian and Big-Endian.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm7xxfb/sm7xxfb.c

index 106465c919972001f84efa98bd5e22fa8bf28fea..07c2199c9ac79165ce51477f95700aa52d20134f 100644 (file)
@@ -946,7 +946,6 @@ static int smtc_setcolreg(unsigned regno, unsigned red, unsigned green,
        return 0;
 }
 
-#ifdef __BIG_ENDIAN
 static ssize_t smtcfb_read(struct fb_info *info, char __user *buf,
                           size_t count, loff_t *ppos)
 {
@@ -1107,7 +1106,6 @@ static ssize_t smtcfb_write(struct fb_info *info, const char __user *buf,
 
        return (cnt) ? cnt : err;
 }
-#endif /* ! __BIG_ENDIAN */
 
 static void sm7xx_set_timing(struct smtcfb_info *sfb)
 {
@@ -1303,10 +1301,8 @@ static struct fb_ops smtcfb_ops = {
        .fb_fillrect  = cfb_fillrect,
        .fb_imageblit = cfb_imageblit,
        .fb_copyarea  = cfb_copyarea,
-#ifdef __BIG_ENDIAN
        .fb_read      = smtcfb_read,
        .fb_write     = smtcfb_write,
-#endif
 };
 
 /*