diff options
author | Joe Perches <joe@perches.com> | 2011-06-03 07:51:21 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-05 17:33:40 -0400 |
commit | e3cc055c18ab575291acf0af7622a2e97c4728fa (patch) | |
tree | 896512e1c800bf1393c480757c7b0bc4fe712424 | |
parent | 6403eab143205a45a5493166ff8bf7e3646f4a77 (diff) |
include/net: Remove unnecessary semicolons
Semicolons are not necessary after switch/while/for/if braces
so remove them.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | include/net/sctp/sctp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index f9fe374ac9f4..6a72a58cde59 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h | |||
@@ -601,7 +601,7 @@ static inline int ipver2af(__u8 ipver) | |||
601 | return AF_INET6; | 601 | return AF_INET6; |
602 | default: | 602 | default: |
603 | return 0; | 603 | return 0; |
604 | }; | 604 | } |
605 | } | 605 | } |
606 | 606 | ||
607 | /* Convert from an address parameter type to an address family. */ | 607 | /* Convert from an address parameter type to an address family. */ |
@@ -614,7 +614,7 @@ static inline int param_type2af(__be16 type) | |||
614 | return AF_INET6; | 614 | return AF_INET6; |
615 | default: | 615 | default: |
616 | return 0; | 616 | return 0; |
617 | }; | 617 | } |
618 | } | 618 | } |
619 | 619 | ||
620 | /* Perform some sanity checks. */ | 620 | /* Perform some sanity checks. */ |