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

clk: add GPLv2 headers to the Versatile clock files

The GPLv2 headers were missing and the subsystem maintainer likes
them so put them in. I am the copyright holder, so explicitly
licensing these under the GPLv2.

Reported-by: Mike Turquette <mturquette@ti.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>

authored by

Linus Walleij and committed by
Mike Turquette
401301cc f5894539

+23 -1
+6
drivers/clk/versatile/clk-icst.c
··· 3 3 * We wrap the custom interface from <asm/hardware/icst.h> into the generic 4 4 * clock framework. 5 5 * 6 + * Copyright (C) 2012 Linus Walleij 7 + * 8 + * This program is free software; you can redistribute it and/or modify 9 + * it under the terms of the GNU General Public License version 2 as 10 + * published by the Free Software Foundation. 11 + * 6 12 * TODO: when all ARM reference designs are migrated to generic clocks, the 7 13 * ICST clock code from the ARM tree should probably be merged into this 8 14 * file.
+9 -1
drivers/clk/versatile/clk-integrator.c
··· 1 + /* 2 + * Clock driver for the ARM Integrator/AP and Integrator/CP boards 3 + * Copyright (C) 2012 Linus Walleij 4 + * 5 + * This program is free software; you can redistribute it and/or modify 6 + * it under the terms of the GNU General Public License version 2 as 7 + * published by the Free Software Foundation. 8 + */ 9 + #include <linux/clk-provider.h> 1 10 #include <linux/clk.h> 2 11 #include <linux/clkdev.h> 3 12 #include <linux/err.h> 4 13 #include <linux/io.h> 5 - #include <linux/clk-provider.h> 6 14 7 15 #include <mach/hardware.h> 8 16 #include <mach/platform.h>
+8
drivers/clk/versatile/clk-realview.c
··· 1 + /* 2 + * Clock driver for the ARM RealView boards 3 + * Copyright (C) 2012 Linus Walleij 4 + * 5 + * This program is free software; you can redistribute it and/or modify 6 + * it under the terms of the GNU General Public License version 2 as 7 + * published by the Free Software Foundation. 8 + */ 1 9 #include <linux/clk.h> 2 10 #include <linux/clkdev.h> 3 11 #include <linux/err.h>