OSDN Git Service

Staging: fbtft: fb_ra8875: Remove useless cast
authorShivani Bhardwaj <shivanib134@gmail.com>
Fri, 16 Oct 2015 16:19:01 +0000 (21:49 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 17 Oct 2015 05:56:23 +0000 (22:56 -0700)
Remove explicit type conversion as it is not required.
Semantic patch used:

@@
type T;
T e;
identifier x;
@@

* T x = (T)e;

Signed-off-by: Shivani Bhardwaj <shivanib134@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fbtft/fb_ra8875.c

index 86e43e1..b167c50 100644 (file)
@@ -204,7 +204,7 @@ static void write_reg8_bus8(struct fbtft_par *par, int len, ...)
 {
        va_list args;
        int i, ret;
-       u8 *buf = (u8 *)par->buf;
+       u8 *buf = par->buf;
 
        /* slow down spi-speed for writing registers */
        par->fbtftops.write = write_spi;