zip_ops->csum         = 1; /* Adler checksum desired */
 }
 
-int zip_ctx_init(struct zip_kernel_ctx *zip_ctx, int lzs_flag)
+static int zip_ctx_init(struct zip_kernel_ctx *zip_ctx, int lzs_flag)
 {
        struct zip_operation  *comp_ctx   = &zip_ctx->zip_comp;
        struct zip_operation  *decomp_ctx = &zip_ctx->zip_decomp;
        return -ENOMEM;
 }
 
-void zip_ctx_exit(struct zip_kernel_ctx *zip_ctx)
+static void zip_ctx_exit(struct zip_kernel_ctx *zip_ctx)
 {
        struct zip_operation  *comp_ctx   = &zip_ctx->zip_comp;
        struct zip_operation  *dec_ctx = &zip_ctx->zip_decomp;
        zip_data_buf_free(dec_ctx->output, MAX_OUTPUT_BUFFER_SIZE);
 }
 
-int zip_compress(const u8 *src, unsigned int slen,
+static int zip_compress(const u8 *src, unsigned int slen,
                 u8 *dst, unsigned int *dlen,
                 struct zip_kernel_ctx *zip_ctx)
 {
        return ret;
 }
 
-int zip_decompress(const u8 *src, unsigned int slen,
+static int zip_decompress(const u8 *src, unsigned int slen,
                   u8 *dst, unsigned int *dlen,
                   struct zip_kernel_ctx *zip_ctx)
 {