diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-09-26 06:19:22 (GMT) |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-09-26 08:08:10 (GMT) |
commit | 61d38b9a823c96c7a27fca3924959b1feba04b45 (patch) | |
tree | 8962264a4793addfe2bc70c6323f85cf77cc6450 | |
parent | 933fc7b06ca62741fd5067edab13068d13b3cb35 (diff) | |
download | linux-61d38b9a823c96c7a27fca3924959b1feba04b45.tar.xz |
spi: bcm53xx: Add missing module information
Mainly to fix missing MODULE_LICENSE.
Also add MODULE_DESCRIPTION and MODULE_AUTHOR.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-bcm53xx.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/spi/spi-bcm53xx.c b/drivers/spi/spi-bcm53xx.c index e6600f7..17b34cb 100644 --- a/drivers/spi/spi-bcm53xx.c +++ b/drivers/spi/spi-bcm53xx.c @@ -293,3 +293,7 @@ static void __exit bcm53xxspi_module_exit(void) module_init(bcm53xxspi_module_init); module_exit(bcm53xxspi_module_exit); + +MODULE_DESCRIPTION("Broadcom BCM53xx SPI Controller driver"); +MODULE_AUTHOR("Rafał Miłecki <zajec5@gmail.com>"); +MODULE_LICENSE("GPL"); |