From: Stefan Wahren Date: Tue, 23 Oct 2018 11:06:07 +0000 (+0200) Subject: dmaengine: bcm2835: make license text and module license match X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ab39e1473acef33b4f0114088b51ac05e0b01ba3;p=linux.git dmaengine: bcm2835: make license text and module license match The license text is specifying GPL v2 or later but the MODULE_LICENSE is set to GPL v2 which means GNU Public License v2 only. So choose the license text as the correct one. Signed-off-by: Stefan Wahren Acked-by: Florian Kauer Acked-by: Martin Sperl Signed-off-by: Vinod Koul --- diff --git a/drivers/dma/bcm2835-dma.c b/drivers/dma/bcm2835-dma.c index cad55ab80d417..ed871eb8e3cbf 100644 --- a/drivers/dma/bcm2835-dma.c +++ b/drivers/dma/bcm2835-dma.c @@ -1056,4 +1056,4 @@ module_platform_driver(bcm2835_dma_driver); MODULE_ALIAS("platform:bcm2835-dma"); MODULE_DESCRIPTION("BCM2835 DMA engine driver"); MODULE_AUTHOR("Florian Meier "); -MODULE_LICENSE("GPL v2"); +MODULE_LICENSE("GPL");