summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2012-07-25 09:47:31 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-07-25 09:50:00 +0200
commit8bc0b0a00803a47982fe22c560b7864602ccd289 (patch)
tree49c88e17de40aa4d0051fe0459a9f7cebae4fb48 /common
parent3890f77ebe3c45c9b1ab8ba828e75a80e7baf5b7 (diff)
downloadbarebox-8bc0b0a00803a47982fe22c560b7864602ccd289.tar.gz
barebox-8bc0b0a00803a47982fe22c560b7864602ccd289.tar.xz
complete: add missing EXPORT_SYMBOL for {command, device, empty, command}_var_complete
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/complete.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/complete.c b/common/complete.c
index a8bde8d7a1..6a871ef218 100644
--- a/common/complete.c
+++ b/common/complete.c
@@ -149,6 +149,7 @@ int command_complete(struct string_list *sl, char *instr)
return 0;
}
+EXPORT_SYMBOL(command_complete);
int device_complete(struct string_list *sl, char *instr)
{
@@ -169,6 +170,7 @@ int device_complete(struct string_list *sl, char *instr)
return COMPLETE_CONTINUE;
}
+EXPORT_SYMBOL(device_complete);
static int device_param_complete(char *begin, struct device_d *dev,
struct string_list *sl, char *instr)
@@ -197,11 +199,13 @@ int empty_complete(struct string_list *sl, char *instr)
{
return COMPLETE_END;
}
+EXPORT_SYMBOL(empty_complete);
int command_var_complete(struct string_list *sl, char *instr)
{
return COMPLETE_CONTINUE;
}
+EXPORT_SYMBOL(command_var_complete);
static int env_param_complete(struct string_list *sl, char *instr, int eval)
{