aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorShreeya Patel <shreeya.patel23498@gmail.com>2018-01-24 05:41:07 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-01-25 13:34:04 +0100
commit1babeb0c3e598536c380d213a54d094df7815a0b (patch)
tree4f29e433b0ed40e5a98a734e311fd5486eda178d /drivers/staging
parentStaging: rtl8723bs: Change names to conform to the kernel code (diff)
downloadlinux-dev-1babeb0c3e598536c380d213a54d094df7815a0b.tar.xz
linux-dev-1babeb0c3e598536c380d213a54d094df7815a0b.zip
Staging: rtl8723bs: Remove dead code
"oldmem==NULL;" The above bug under the ifdef code would have caused a GCC warning if it were ever compiled. Hence, remove the dead ifdefed code from the file. Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/rtl8723bs/hal/sdio_ops.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/drivers/staging/rtl8723bs/hal/sdio_ops.c b/drivers/staging/rtl8723bs/hal/sdio_ops.c
index 997ebc02bcb7..cc519697450f 100644
--- a/drivers/staging/rtl8723bs/hal/sdio_ops.c
+++ b/drivers/staging/rtl8723bs/hal/sdio_ops.c
@@ -453,21 +453,6 @@ static u32 sdio_read_port(
cnt = _RND(cnt, psdio->block_transfer_len);
/* cnt = sdio_align_size(cnt); */
- if (oldcnt != cnt) {
-#ifdef SDIO_DYNAMIC_ALLOC_MEM
- oldmem = mem;
- mem = rtw_malloc(cnt);
- if (mem == NULL) {
- DBG_8192C(KERN_WARNING "%s: allocate memory %d bytes fail!\n", __func__, cnt);
- mem = oldmem;
- oldmem == NULL;
- }
-#else
- /* in this case, caller should gurante the buffer is big enough */
- /* to receive data after alignment */
-#endif
- }
-
err = _sd_read(intfhdl, addr, cnt, mem);
#ifdef SDIO_DYNAMIC_ALLOC_MEM