Make four more functions static that were missed in the last commit.

This commit is contained in:
Andrew Thompson 2005-10-14 20:57:02 +00:00
parent 3c2adf40e9
commit 4c84347939
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151345

View file

@ -647,7 +647,7 @@ bridge_ioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
*
* Lookup a bridge member interface.
*/
struct bridge_iflist *
static struct bridge_iflist *
bridge_lookup_member(struct bridge_softc *sc, const char *name)
{
struct bridge_iflist *bif;
@ -669,7 +669,7 @@ bridge_lookup_member(struct bridge_softc *sc, const char *name)
*
* Lookup a bridge member interface by ifnet*.
*/
struct bridge_iflist *
static struct bridge_iflist *
bridge_lookup_member_if(struct bridge_softc *sc, struct ifnet *member_ifp)
{
struct bridge_iflist *bif;
@ -1663,7 +1663,7 @@ bridge_forward(struct bridge_softc *sc, struct mbuf *m)
* Receive input from a member interface. Queue the packet for
* bridging if it is not for us.
*/
struct mbuf *
static struct mbuf *
bridge_input(struct ifnet *ifp, struct mbuf *m)
{
struct bridge_softc *sc = ifp->if_bridge;
@ -1956,7 +1956,7 @@ bridge_rtupdate(struct bridge_softc *sc, const uint8_t *dst,
*
* Lookup the destination interface for an address.
*/
struct ifnet *
static struct ifnet *
bridge_rtlookup(struct bridge_softc *sc, const uint8_t *addr)
{
struct bridge_rtnode *brt;
@ -2181,7 +2181,7 @@ bridge_rthash(struct bridge_softc *sc, const uint8_t *addr)
*
* Look up a bridge route node for the specified destination.
*/
struct bridge_rtnode *
static struct bridge_rtnode *
bridge_rtnode_lookup(struct bridge_softc *sc, const uint8_t *addr)
{
struct bridge_rtnode *brt;