diff options
Diffstat (limited to 'drivers/clk/socfpga')
| -rw-r--r-- | drivers/clk/socfpga/clk-gate-s10.c | 1 | ||||
| -rw-r--r-- | drivers/clk/socfpga/clk-periph-s10.c | 1 | ||||
| -rw-r--r-- | drivers/clk/socfpga/clk-pll-s10.c | 1 | ||||
| -rw-r--r-- | drivers/clk/socfpga/clk.c | 14 |
4 files changed, 4 insertions, 13 deletions
diff --git a/drivers/clk/socfpga/clk-gate-s10.c b/drivers/clk/socfpga/clk-gate-s10.c index eee2d48ab656..54a464fa63e0 100644 --- a/drivers/clk/socfpga/clk-gate-s10.c +++ b/drivers/clk/socfpga/clk-gate-s10.c @@ -3,6 +3,7 @@ * Copyright (C) 2017, Intel Corporation */ #include <linux/clk-provider.h> +#include <linux/io.h> #include <linux/slab.h> #include "stratix10-clk.h" #include "clk.h" diff --git a/drivers/clk/socfpga/clk-periph-s10.c b/drivers/clk/socfpga/clk-periph-s10.c index 568f59b58ddf..5c50e723ecae 100644 --- a/drivers/clk/socfpga/clk-periph-s10.c +++ b/drivers/clk/socfpga/clk-periph-s10.c @@ -4,6 +4,7 @@ */ #include <linux/slab.h> #include <linux/clk-provider.h> +#include <linux/io.h> #include "stratix10-clk.h" #include "clk.h" diff --git a/drivers/clk/socfpga/clk-pll-s10.c b/drivers/clk/socfpga/clk-pll-s10.c index c4d0b6f6abf2..4705eb544f01 100644 --- a/drivers/clk/socfpga/clk-pll-s10.c +++ b/drivers/clk/socfpga/clk-pll-s10.c @@ -4,6 +4,7 @@ */ #include <linux/slab.h> #include <linux/clk-provider.h> +#include <linux/io.h> #include "stratix10-clk.h" #include "clk.h" diff --git a/drivers/clk/socfpga/clk.c b/drivers/clk/socfpga/clk.c index 7564d2e35f32..0bd7d0ebf4a1 100644 --- a/drivers/clk/socfpga/clk.c +++ b/drivers/clk/socfpga/clk.c @@ -1,21 +1,9 @@ +// SPDX-License-Identifier: GPL-2.0-or-later /* * Copyright 2011-2012 Calxeda, Inc. * Copyright (C) 2012-2013 Altera Corporation <www.altera.com> * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * * Based from clk-highbank.c - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include <linux/of.h> |