Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc74545a authored by Tudor Ambarus's avatar Tudor Ambarus Committed by David Howells
Browse files

lib: asn1_decoder - add MODULE_LICENSE("GPL")



A kernel taint results when loading the rsa_generic module:

root@(none):~# modprobe rsa_generic
asn1_decoder: module license 'unspecified' taints kernel.
Disabling lock debugging due to kernel taint

"Tainting" of the kernel is (usually) a way of indicating that
a proprietary module has been inserted, which is not the case here.

Signed-off-by: default avatarTudor Ambarus <tudor-dan.ambarus@nxp.com>
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 3c8f2278
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -12,6 +12,7 @@
#include <linux/export.h>
#include <linux/export.h>
#include <linux/kernel.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/asn1_decoder.h>
#include <linux/asn1_decoder.h>
#include <linux/asn1_ber_bytecode.h>
#include <linux/asn1_ber_bytecode.h>


@@ -504,3 +505,5 @@ int asn1_ber_decoder(const struct asn1_decoder *decoder,
	return -EBADMSG;
	return -EBADMSG;
}
}
EXPORT_SYMBOL_GPL(asn1_ber_decoder);
EXPORT_SYMBOL_GPL(asn1_ber_decoder);

MODULE_LICENSE("GPL");