staging: wilc1000: remove a dead preprocessor conditionals
authorTony Cho <tony.cho@atmel.com>
Tue, 28 Jul 2015 08:47:27 +0000 (17:47 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Jul 2015 20:55:11 +0000 (13:55 -0700)
This patch removes the preprocessor conditionals which are related to
the WILC1000_SINGLE_TRANSFER definition becasue this is not used.

Signed-off-by: Tony Cho <tony.cho@atmel.com>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/wilc_sdio.c

index ea545c9bf9355844eece57d1cb4334fb70468883..8f674adbdfee8baae0c82a39c5487663776f4391 100644 (file)
 #include "wilc_wlan_if.h"
 #include "wilc_wlan.h"
 
-#ifdef WILC1000_SINGLE_TRANSFER
-#define WILC_SDIO_BLOCK_SIZE 256
-#else
 #define WILC_SDIO_BLOCK_SIZE 512
-#endif
 
 typedef struct {
        void *os_context;
@@ -321,16 +317,6 @@ static int sdio_write(uint32_t addr, uint8_t *buf, uint32_t size)
                cmd.function = 0;
                cmd.address = 0x10f;
        } else {
-#ifdef WILC1000_SINGLE_TRANSFER
-               /**
-                *      has to be block aligned...
-                **/
-               nleft = size % block_size;
-               if (nleft > 0) {
-                       size += block_size;
-                       size &= ~(block_size - 1);
-               }
-#else
                /**
                 *      has to be word aligned...
                 **/
@@ -338,7 +324,6 @@ static int sdio_write(uint32_t addr, uint8_t *buf, uint32_t size)
                        size += 4;
                        size &= ~0x3;
                }
-#endif
 
                /**
                 *      func 1 access
@@ -463,16 +448,6 @@ static int sdio_read(uint32_t addr, uint8_t *buf, uint32_t size)
                cmd.function = 0;
                cmd.address = 0x10f;
        } else {
-#ifdef WILC1000_SINGLE_TRANSFER
-               /**
-                *      has to be block aligned...
-                **/
-               nleft = size % block_size;
-               if (nleft > 0) {
-                       size += block_size;
-                       size &= ~(block_size - 1);
-               }
-#else
                /**
                 *      has to be word aligned...
                 **/
@@ -480,7 +455,6 @@ static int sdio_read(uint32_t addr, uint8_t *buf, uint32_t size)
                        size += 4;
                        size &= ~0x3;
                }
-#endif
 
                /**
                 *      func 1 access
This page took 0.02893 seconds and 5 git commands to generate.