Commit e5619b13 authored by simran singhal's avatar simran singhal Committed by Greg Kroah-Hartman

staging: rts5208: Remove unnecessary cast on void pointer

The following Coccinelle script was used to detect this:
@r@
expression x;
void* e;
type T;
identifier f;
@@
(
  *((T *)e)
|
  ((T *)x)[...]
|
  ((T*)x)->f
|
- (T*)
  e
)
Signed-off-by: default avatarsimran singhal <singhalsimran0@gmail.com>
Acked-by: default avatarJulia Lawall <julia.lawall@lip6.fr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c95d2e87
...@@ -766,8 +766,7 @@ int rtsx_transfer_data(struct rtsx_chip *chip, u8 card, void *buf, size_t len, ...@@ -766,8 +766,7 @@ int rtsx_transfer_data(struct rtsx_chip *chip, u8 card, void *buf, size_t len,
return -EIO; return -EIO;
if (use_sg) { if (use_sg) {
err = rtsx_transfer_sglist_adma(chip, card, err = rtsx_transfer_sglist_adma(chip, card, buf,
(struct scatterlist *)buf,
use_sg, dma_dir, timeout); use_sg, dma_dir, timeout);
} else { } else {
err = rtsx_transfer_buf(chip, card, buf, len, dma_dir, timeout); err = rtsx_transfer_buf(chip, card, buf, len, dma_dir, timeout);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment