提交 ce643a30 编写于 作者: F Fabian Frederick 提交者: Linus Torvalds

lib/textsearch.c: move EXPORT_SYMBOL after functions

Fix checkpatch warning:
"WARNING: EXPORT_SYMBOL(foo); should immediately follow its function/variable"
Signed-off-by: NFabian Frederick <fabf@skynet.be>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 6d6a138f
...@@ -159,6 +159,7 @@ int textsearch_register(struct ts_ops *ops) ...@@ -159,6 +159,7 @@ int textsearch_register(struct ts_ops *ops)
spin_unlock(&ts_mod_lock); spin_unlock(&ts_mod_lock);
return err; return err;
} }
EXPORT_SYMBOL(textsearch_register);
/** /**
* textsearch_unregister - unregister a textsearch module * textsearch_unregister - unregister a textsearch module
...@@ -190,6 +191,7 @@ int textsearch_unregister(struct ts_ops *ops) ...@@ -190,6 +191,7 @@ int textsearch_unregister(struct ts_ops *ops)
spin_unlock(&ts_mod_lock); spin_unlock(&ts_mod_lock);
return err; return err;
} }
EXPORT_SYMBOL(textsearch_unregister);
struct ts_linear_state struct ts_linear_state
{ {
...@@ -236,6 +238,7 @@ unsigned int textsearch_find_continuous(struct ts_config *conf, ...@@ -236,6 +238,7 @@ unsigned int textsearch_find_continuous(struct ts_config *conf,
return textsearch_find(conf, state); return textsearch_find(conf, state);
} }
EXPORT_SYMBOL(textsearch_find_continuous);
/** /**
* textsearch_prepare - Prepare a search * textsearch_prepare - Prepare a search
...@@ -298,6 +301,7 @@ struct ts_config *textsearch_prepare(const char *algo, const void *pattern, ...@@ -298,6 +301,7 @@ struct ts_config *textsearch_prepare(const char *algo, const void *pattern,
return ERR_PTR(err); return ERR_PTR(err);
} }
EXPORT_SYMBOL(textsearch_prepare);
/** /**
* textsearch_destroy - destroy a search configuration * textsearch_destroy - destroy a search configuration
...@@ -316,9 +320,4 @@ void textsearch_destroy(struct ts_config *conf) ...@@ -316,9 +320,4 @@ void textsearch_destroy(struct ts_config *conf)
kfree(conf); kfree(conf);
} }
EXPORT_SYMBOL(textsearch_register);
EXPORT_SYMBOL(textsearch_unregister);
EXPORT_SYMBOL(textsearch_prepare);
EXPORT_SYMBOL(textsearch_find_continuous);
EXPORT_SYMBOL(textsearch_destroy); EXPORT_SYMBOL(textsearch_destroy);
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册