2024-07-21 13:36:18 +00:00
|
|
|
// SPDX-License-Identifier: 0BSD
|
|
|
|
|
2011-01-13 01:01:22 +00:00
|
|
|
/*
|
|
|
|
* XZ decoder module information
|
|
|
|
*
|
|
|
|
* Author: Lasse Collin <lasse.collin@tukaani.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/xz.h>
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(xz_dec_init);
|
|
|
|
EXPORT_SYMBOL(xz_dec_reset);
|
|
|
|
EXPORT_SYMBOL(xz_dec_run);
|
|
|
|
EXPORT_SYMBOL(xz_dec_end);
|
|
|
|
|
2021-10-10 21:31:42 +00:00
|
|
|
#ifdef CONFIG_XZ_DEC_MICROLZMA
|
|
|
|
EXPORT_SYMBOL(xz_dec_microlzma_alloc);
|
|
|
|
EXPORT_SYMBOL(xz_dec_microlzma_reset);
|
|
|
|
EXPORT_SYMBOL(xz_dec_microlzma_run);
|
|
|
|
EXPORT_SYMBOL(xz_dec_microlzma_end);
|
|
|
|
#endif
|
|
|
|
|
2011-01-13 01:01:22 +00:00
|
|
|
MODULE_DESCRIPTION("XZ decompressor");
|
2024-07-21 13:36:27 +00:00
|
|
|
MODULE_VERSION("1.2");
|
2011-01-13 01:01:22 +00:00
|
|
|
MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
|
2024-07-21 13:36:18 +00:00
|
|
|
MODULE_LICENSE("Dual BSD/GPL");
|