Commit f7ead7b4 authored by Dan Streetman's avatar Dan Streetman Committed by Herbert Xu

lib: make lib/842 decompress functions static

Make the do_index and do_op functions static.

They are used only internally by the 842 decompression function,
and should be static.
Reported-By: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarDan Streetman <ddstreet@ieee.org>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 608f37d0
......@@ -214,7 +214,7 @@ static int __do_index(struct sw842_param *p, u8 size, u8 bits, u64 fsize)
return 0;
}
int do_index(struct sw842_param *p, u8 n)
static int do_index(struct sw842_param *p, u8 n)
{
switch (n) {
case 2:
......@@ -228,7 +228,7 @@ int do_index(struct sw842_param *p, u8 n)
}
}
int do_op(struct sw842_param *p, u8 o)
static int do_op(struct sw842_param *p, u8 o)
{
int i, ret = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment