aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/fbtft/fb_ssd1331.c
diff options
context:
space:
mode:
authorShivani Bhardwaj <shivanib134@gmail.com>2015-10-16 21:49:20 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-10-16 22:56:23 -0700
commitf1092794c0132cfca2329748983b840ffeae379e (patch)
tree7628690fefc5e4b150ce544a25bc87ec3bba5057 /drivers/staging/fbtft/fb_ssd1331.c
parentStaging: fbtft: fb_ra8875: Remove useless cast (diff)
downloadlinux-dev-f1092794c0132cfca2329748983b840ffeae379e.tar.xz
linux-dev-f1092794c0132cfca2329748983b840ffeae379e.zip
Staging: fbtft: fb_ssd1331: Remove unnecessary cast
Compiler can typecast variables implicitly so, explicit type cast is not required and should be removed. 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>
Diffstat (limited to 'drivers/staging/fbtft/fb_ssd1331.c')
-rw-r--r--drivers/staging/fbtft/fb_ssd1331.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/fbtft/fb_ssd1331.c b/drivers/staging/fbtft/fb_ssd1331.c
index 53cb8e9847cf..bd294f886c5f 100644
--- a/drivers/staging/fbtft/fb_ssd1331.c
+++ b/drivers/staging/fbtft/fb_ssd1331.c
@@ -60,7 +60,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;
if (unlikely(par->debug & DEBUG_WRITE_REGISTER)) {
va_start(args, len);