repo: https://github.com/T-head-Semi/linux commit: b1313fe517ca3703119dcc99ef3bbf75ab42bcfb Change-Id: I6cbb35294024ea3a66140e311f4bb705fd7fd626
27 lines
664 B
C
27 lines
664 B
C
/*
|
|
* XZ decoder module information
|
|
*
|
|
* Author: Lasse Collin <lasse.collin@tukaani.org>
|
|
*
|
|
* This file has been put into the public domain.
|
|
* You can do whatever you want with this file.
|
|
*/
|
|
|
|
#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);
|
|
|
|
MODULE_DESCRIPTION("XZ decompressor");
|
|
MODULE_VERSION("1.0");
|
|
MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
|
|
|
|
/*
|
|
* This code is in the public domain, but in Linux it's simplest to just
|
|
* say it's GPL and consider the authors as the copyright holders.
|
|
*/
|
|
MODULE_LICENSE("GPL");
|