]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - scripts/basic/hash.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next
[karo-tx-linux.git] / scripts / basic / hash.c
index 3299ad7fc8c0faae87debf0860d155dbae5d7b83..2ef5d3f666b87ed52c7664cbc37ffe1e143397e8 100644 (file)
@@ -21,7 +21,7 @@ static void usage(void)
  * http://www.cse.yorku.ca/~oz/hash.html
  */
 
-unsigned int djb2_hash(char *str)
+static unsigned int djb2_hash(char *str)
 {
        unsigned long hash = 5381;
        int c;
@@ -34,7 +34,7 @@ unsigned int djb2_hash(char *str)
        return (unsigned int)(hash & ((1 << DYNAMIC_DEBUG_HASH_BITS) - 1));
 }
 
-unsigned int r5_hash(char *str)
+static unsigned int r5_hash(char *str)
 {
        unsigned long hash = 0;
        int c;