From: wangweidong Date: Fri, 6 Dec 2013 01:36:28 +0000 (+0800) Subject: sctp: remove the else path X-Git-Tag: upstream/snapshot3+hdmi~3572^2~598 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8b7318d3edb9d961c41c5e7f7e59b563d74d507d;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git sctp: remove the else path Make the code more simplification. Acked-by: Neil Horman Suggested-by: Joe Perches Signed-off-by: Wang Weidong Signed-off-by: David S. Miller --- diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 8529520..c7172f8 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c @@ -955,17 +955,13 @@ int sctp_cmp_addr_exact(const union sctp_addr *ss1, */ struct sctp_chunk *sctp_get_ecne_prepend(struct sctp_association *asoc) { - struct sctp_chunk *chunk; + if (!asoc->need_ecne) + return NULL; /* Send ECNE if needed. * Not being able to allocate a chunk here is not deadly. */ - if (asoc->need_ecne) - chunk = sctp_make_ecne(asoc, asoc->last_ecne_tsn); - else - chunk = NULL; - - return chunk; + return sctp_make_ecne(asoc, asoc->last_ecne_tsn); } /*