summaryrefslogtreecommitdiffstats
path: root/fs/squashfs/sqfs_decompressor.c
blob: a899a5704be9e9fd749ec477ee552edfe3a5559c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// SPDX-License-Identifier: GPL-2.0
/*
 * Copyright (C) 2020 Bootlin
 *
 * Author: Joao Marcos Costa <joaomarcos.costa@bootlin.com>
 */

#include <errno.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>

#include "sqfs_decompressor.h"
#include "sqfs_filesystem.h"
#include "sqfs_utils.h"

int sqfs_decompress(u16 comp_type, void *dest, unsigned long *dest_len,
		    void *source, u32 lenp)
{
	int ret = 0;

	switch (comp_type) {
	default:
		printf("Error: unknown compression type.\n");
		return -EINVAL;
	}

	return ret;
}