Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: dvb-frontends/mxl5xx: cleanup and fix licensing boilerplates

mxl5xx.h doesn't carry any licensing boilerplate at all right now, so copy
the boilerplate over from the main driver file mxl5xx.c. Also, mxl5xx_defs
is missing a part of the licensing boilerplate text, so add it.

[mchehab@kernel.org: kept only the part of this patch that copied
the license from mxl5xx.c into mxl5xx.h]
Cc: Ralph Metzler <rjkm@metzlerbros.de>
Cc: Manfred Voelkel <mvoelkel@DigitalDevices.de>
Signed-off-by: Daniel Scheller <d.scheller@gmx.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

authored by

Daniel Scheller and committed by
Mauro Carvalho Chehab
204b1434 79150ac9

+21 -1
-1
drivers/media/dvb-frontends/mxl5xx.c
··· 17 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 19 * GNU General Public License for more details. 20 - * 21 20 */ 22 21 23 22 #include <linux/kernel.h>
+21
drivers/media/dvb-frontends/mxl5xx.h
··· 1 + /* 2 + * Driver for the MaxLinear MxL5xx family of tuners/demods 3 + * 4 + * Copyright (C) 2014-2015 Ralph Metzler <rjkm@metzlerbros.de> 5 + * Marcus Metzler <mocm@metzlerbros.de> 6 + * developed for Digital Devices GmbH 7 + * 8 + * based on code: 9 + * Copyright (c) 2011-2013 MaxLinear, Inc. All rights reserved 10 + * which was released under GPL V2 11 + * 12 + * This program is free software; you can redistribute it and/or 13 + * modify it under the terms of the GNU General Public License 14 + * version 2, as published by the Free Software Foundation. 15 + * 16 + * This program is distributed in the hope that it will be useful, 17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 + * GNU General Public License for more details. 20 + */ 21 + 1 22 #ifndef _MXL5XX_H_ 2 23 #define _MXL5XX_H_ 3 24