From 7c6742bd9209c69dbefa4bf12802c3c88b18aeb8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 22 Sep 2010 22:53:47 -0400 Subject: mtd-utils: compr: drop unused model argument The jffs2 compression framework provides a "model" argument when compressing and decompressing, but the caller always passes in NULL and the callees never use it. So punt this useless overhead. Signed-off-by: Mike Frysinger Signed-off-by: Artem Bityutskiy --- compr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compr.h') diff --git a/compr.h b/compr.h index 4b79802..a21e935 100644 --- a/compr.h +++ b/compr.h @@ -70,9 +70,9 @@ struct jffs2_compressor { const char *name; char compr; /* JFFS2_COMPR_XXX */ int (*compress)(unsigned char *data_in, unsigned char *cpage_out, - uint32_t *srclen, uint32_t *destlen, void *model); + uint32_t *srclen, uint32_t *destlen); int (*decompress)(unsigned char *cdata_in, unsigned char *data_out, - uint32_t cdatalen, uint32_t datalen, void *model); + uint32_t cdatalen, uint32_t datalen); int usecount; int disabled; /* if seted the compressor won't compress */ unsigned char *compr_buf; /* used by size compr. mode */ -- cgit v1.2.3