[IRDA]: Do not do pointless kmalloc return value cast in KingSun driver

kmalloc() returns a void pointer, so there is no need to cast it in
drivers/net/irda/kingsun-sir.c::kingsun_probe().

Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Jesper Juhl and committed by David S. Miller 901ded25 aaa53c4a

+2 -2
+2 -2
drivers/net/irda/kingsun-sir.c
··· 509 509 spin_lock_init(&kingsun->lock); 510 510 511 511 /* Allocate input buffer */ 512 - kingsun->in_buf = (__u8 *)kmalloc(kingsun->max_rx, GFP_KERNEL); 512 + kingsun->in_buf = kmalloc(kingsun->max_rx, GFP_KERNEL); 513 513 if (!kingsun->in_buf) 514 514 goto free_mem; 515 515 516 516 /* Allocate output buffer */ 517 - kingsun->out_buf = (__u8 *)kmalloc(KINGSUN_FIFO_SIZE, GFP_KERNEL); 517 + kingsun->out_buf = kmalloc(KINGSUN_FIFO_SIZE, GFP_KERNEL); 518 518 if (!kingsun->out_buf) 519 519 goto free_mem; 520 520