net/ipv6/mcast.c: Remove unnecessary kmalloc casts

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Joe Perches 2010-05-31 17:23:22 +00:00 committed by David S. Miller
parent 3ed37a6fa7
commit 5d55354f14

View File

@ -1995,8 +1995,7 @@ static int sf_setstate(struct ifmcaddr6 *pmc)
&psf->sf_addr)) &psf->sf_addr))
break; break;
if (!dpsf) { if (!dpsf) {
dpsf = (struct ip6_sf_list *) dpsf = kmalloc(sizeof(*dpsf), GFP_ATOMIC);
kmalloc(sizeof(*dpsf), GFP_ATOMIC);
if (!dpsf) if (!dpsf)
continue; continue;
*dpsf = *psf; *dpsf = *psf;