Loading...
1/*
2 * XZ decoder module information
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */
9
10#include <linux/module.h>
11#include <linux/xz.h>
12
13EXPORT_SYMBOL(xz_dec_init);
14EXPORT_SYMBOL(xz_dec_reset);
15EXPORT_SYMBOL(xz_dec_run);
16EXPORT_SYMBOL(xz_dec_end);
17
18MODULE_DESCRIPTION("XZ decompressor");
19MODULE_VERSION("1.0");
20MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
21
22/*
23 * This code is in the public domain, but in Linux it's simplest to just
24 * say it's GPL and consider the authors as the copyright holders.
25 */
26MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: 0BSD
2
3/*
4 * XZ decoder module information
5 *
6 * Author: Lasse Collin <lasse.collin@tukaani.org>
7 */
8
9#include <linux/module.h>
10#include <linux/xz.h>
11
12EXPORT_SYMBOL(xz_dec_init);
13EXPORT_SYMBOL(xz_dec_reset);
14EXPORT_SYMBOL(xz_dec_run);
15EXPORT_SYMBOL(xz_dec_end);
16
17#ifdef CONFIG_XZ_DEC_MICROLZMA
18EXPORT_SYMBOL(xz_dec_microlzma_alloc);
19EXPORT_SYMBOL(xz_dec_microlzma_reset);
20EXPORT_SYMBOL(xz_dec_microlzma_run);
21EXPORT_SYMBOL(xz_dec_microlzma_end);
22#endif
23
24MODULE_DESCRIPTION("XZ decompressor");
25MODULE_VERSION("1.2");
26MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
27MODULE_LICENSE("Dual BSD/GPL");