mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
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>
This commit is contained in:
parent
6403eab143
commit
e3cc055c18
1 changed files with 2 additions and 2 deletions
|
@ -601,7 +601,7 @@ static inline int ipver2af(__u8 ipver)
|
||||||
return AF_INET6;
|
return AF_INET6;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Convert from an address parameter type to an address family. */
|
/* Convert from an address parameter type to an address family. */
|
||||||
|
@ -614,7 +614,7 @@ static inline int param_type2af(__be16 type)
|
||||||
return AF_INET6;
|
return AF_INET6;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Perform some sanity checks. */
|
/* Perform some sanity checks. */
|
||||||
|
|
Loading…
Add table
Reference in a new issue