]> Pileus Git - ~andy/linux/commitdiff
staging: sm7xx: code improvement
authorJavier M. Mellid <jmunhoz@igalia.com>
Sun, 10 Jun 2012 11:12:22 +0000 (13:12 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 12 Jun 2012 17:55:54 +0000 (10:55 -0700)
This patch simplifies code. It erases redundant code under little endian
compilations.

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

index 746c4cd5d30ef2729d252f4566500f67ad1d7db9..2c172d6cd65fa3efce611ae02c00580dec7d6976 100644 (file)
@@ -724,16 +724,13 @@ static void smtc_unmap_mmio(struct smtcfb_info *sfb)
 static int smtc_map_smem(struct smtcfb_info *sfb,
                struct pci_dev *pdev, u_long smem_len)
 {
-       if (sfb->fb.var.bits_per_pixel == 32) {
+
+       sfb->fb.fix.smem_start = pci_resource_start(pdev, 0);
+
 #ifdef __BIG_ENDIAN
-               sfb->fb.fix.smem_start = pci_resource_start(pdev, 0)
-                       + 0x800000;
-#else
-               sfb->fb.fix.smem_start = pci_resource_start(pdev, 0);
+       if (sfb->fb.var.bits_per_pixel == 32)
+               sfb->fb.fix.smem_start += 0x800000;
 #endif
-       } else {
-               sfb->fb.fix.smem_start = pci_resource_start(pdev, 0);
-       }
 
        sfb->fb.fix.smem_len = smem_len;