aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/ipcomp6.c
diff options
context:
space:
mode:
authorIan Morris <ipm@chirality.org.uk>2014-08-24 16:53:11 -0400
committerDavid S. Miller <davem@davemloft.net>2014-08-25 01:37:52 -0400
commitcc24becae3e87d7aa8238f4fcb29bfb68f7ffb97 (patch)
tree9f1e06d8e1ba2f809cb3bd493b064f3ab132f3d8 /net/ipv6/ipcomp6.c
parent67ba4152e8b77eada6a9c64e3c2c84d6112794fc (diff)
ipv6: White-space cleansing : Structure layouts
This patch makes no changes to the logic of the code but simply addresses coding style issues as detected by checkpatch. Both objdump and diff -w show no differences. This patch addresses structure definitions, specifically it cleanses the brace placement and replaces spaces with tabs in a few places. Signed-off-by: Ian Morris <ipm@chirality.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ipcomp6.c')
-rw-r--r--net/ipv6/ipcomp6.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c
index d1c793cffcb5..1b9316e1386a 100644
--- a/net/ipv6/ipcomp6.c
+++ b/net/ipv6/ipcomp6.c
@@ -181,8 +181,7 @@ static int ipcomp6_rcv_cb(struct sk_buff *skb, int err)
181 return 0; 181 return 0;
182} 182}
183 183
184static const struct xfrm_type ipcomp6_type = 184static const struct xfrm_type ipcomp6_type = {
185{
186 .description = "IPCOMP6", 185 .description = "IPCOMP6",
187 .owner = THIS_MODULE, 186 .owner = THIS_MODULE,
188 .proto = IPPROTO_COMP, 187 .proto = IPPROTO_COMP,
@@ -193,8 +192,7 @@ static const struct xfrm_type ipcomp6_type =
193 .hdr_offset = xfrm6_find_1stfragopt, 192 .hdr_offset = xfrm6_find_1stfragopt,
194}; 193};
195 194
196static struct xfrm6_protocol ipcomp6_protocol = 195static struct xfrm6_protocol ipcomp6_protocol = {
197{
198 .handler = xfrm6_rcv, 196 .handler = xfrm6_rcv,
199 .cb_handler = ipcomp6_rcv_cb, 197 .cb_handler = ipcomp6_rcv_cb,
200 .err_handler = ipcomp6_err, 198 .err_handler = ipcomp6_err,