clk-pll.c (c57d5621d2f2dc238f4b9c4d00b2a54187a75445) | clk-pll.c (b0af24b523c21c918eb64541df4450b9da7ed195) |
---|---|
1/* 2 * Copyright 2011-2012 Calxeda, Inc. 3 * Copyright (C) 2012-2013 Altera Corporation <www.altera.com> 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 as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * Based from clk-highbank.c 16 * 17 */ | 1/* 2 * Copyright 2011-2012 Calxeda, Inc. 3 * Copyright (C) 2012-2013 Altera Corporation <www.altera.com> 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 as published by 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * Based from clk-highbank.c 16 * 17 */ |
18#include <linux/clk.h> 19#include <linux/clkdev.h> | 18#include <linux/slab.h> |
20#include <linux/clk-provider.h> 21#include <linux/io.h> 22#include <linux/of.h> 23#include <linux/of_address.h> 24 25#include "clk.h" 26 27/* Clock bypass bits */ --- 106 unchanged lines hidden --- | 19#include <linux/clk-provider.h> 20#include <linux/io.h> 21#include <linux/of.h> 22#include <linux/of_address.h> 23 24#include "clk.h" 25 26/* Clock bypass bits */ --- 106 unchanged lines hidden --- |