From: Bill Richardson Date: Thu, 17 Apr 2014 19:32:17 +0000 (-0700) Subject: mfd: cros_ec: cleanup: cros_ec.c is GPL licensed, like all the others. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a865a589144da6dbf26750b7193a9748da159305;p=deliverable%2Flinux.git mfd: cros_ec: cleanup: cros_ec.c is GPL licensed, like all the others. This module has always been GPL licensed. It was just missing the explicit declaration to avoid tainting the kernel. Signed-off-by: Bill Richardson Signed-off-by: Doug Anderson Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/cros_ec.c b/drivers/mfd/cros_ec.c index 783fe2e73e1e..fae69b1db5b1 100644 --- a/drivers/mfd/cros_ec.c +++ b/drivers/mfd/cros_ec.c @@ -184,3 +184,6 @@ int cros_ec_resume(struct cros_ec_device *ec_dev) EXPORT_SYMBOL(cros_ec_resume); #endif + +MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("ChromeOS EC core driver");