summaryrefslogtreecommitdiffstats
path: root/drivers/staging/batman-adv/hash.h
diff options
context:
space:
mode:
authorSven Eckelmann <sven.eckelmann@gmx.de>2010-06-22 01:25:47 +0200
committerGreg Kroah-Hartman <gregkh@suse.de>2010-06-22 14:05:05 -0700
commit42fa1b92ab3261ef60ef4f60ff6eff2a0585348d (patch)
tree2f7df7e7ca6ca23e34ca803aaf9fe3f91b70510f /drivers/staging/batman-adv/hash.h
parent516c9a777819150bf3a9b709cd93325cf29a93bf (diff)
downloadop-kernel-dev-42fa1b92ab3261ef60ef4f60ff6eff2a0585348d.zip
op-kernel-dev-42fa1b92ab3261ef60ef4f60ff6eff2a0585348d.tar.gz
Staging: batman-adv: Mark locally used symbols as static
Functions and variables which are used only inside one object file can be declared as static. This helped to find unused functions/variables * mainIfAddr_default * main_if_was_up and functions with declarations but missing definitions * hash_debug * orig_find * send_own_packet_work Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/batman-adv/hash.h')
-rw-r--r--drivers/staging/batman-adv/hash.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/staging/batman-adv/hash.h b/drivers/staging/batman-adv/hash.h
index ea6d21e..0505595 100644
--- a/drivers/staging/batman-adv/hash.h
+++ b/drivers/staging/batman-adv/hash.h
@@ -56,9 +56,6 @@ struct hashtable_t {
* argument and the size the second */
};
-/* clears the hash */
-void hash_init(struct hashtable_t *hash);
-
/* allocates and clears the hash */
struct hashtable_t *hash_new(int size, hashdata_compare_cb compare,
hashdata_choose_cb choose);
@@ -98,7 +95,4 @@ struct hashtable_t *hash_resize(struct hashtable_t *hash, int size);
* the returned iterator to access the elements until hash_it_t returns NULL. */
struct hash_it_t *hash_iterate(struct hashtable_t *hash,
struct hash_it_t *iter_in);
-
-/* print the hash table for debugging */
-void hash_debug(struct hashtable_t *hash);
#endif
OpenPOWER on IntegriCloud