aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/auth_gss/gss_mech_switch.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/net/sunrpc/auth_gss/gss_mech_switch.c b/net/sunrpc/auth_gss/gss_mech_switch.c
index deaa7ae81cdf..89416522ef79 100644
--- a/net/sunrpc/auth_gss/gss_mech_switch.c
+++ b/net/sunrpc/auth_gss/gss_mech_switch.c
@@ -132,15 +132,12 @@ gss_mech_unregister(struct gss_api_mech *gm)
132 132
133EXPORT_SYMBOL_GPL(gss_mech_unregister); 133EXPORT_SYMBOL_GPL(gss_mech_unregister);
134 134
135struct gss_api_mech * 135static struct gss_api_mech *gss_mech_get(struct gss_api_mech *gm)
136gss_mech_get(struct gss_api_mech *gm)
137{ 136{
138 __module_get(gm->gm_owner); 137 __module_get(gm->gm_owner);
139 return gm; 138 return gm;
140} 139}
141 140
142EXPORT_SYMBOL_GPL(gss_mech_get);
143
144static struct gss_api_mech * 141static struct gss_api_mech *
145_gss_mech_get_by_name(const char *name) 142_gss_mech_get_by_name(const char *name)
146{ 143{