root/drivers/clk/bcm/clk-bcm63xx.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. bcm63138_armpll_init

   1 /*
   2  * Copyright (C) 2015 Broadcom Corporation
   3  *
   4  * This program is free software; you can redistribute it and/or
   5  * modify it under the terms of the GNU General Public License as
   6  * published by the Free Software Foundation version 2.
   7  *
   8  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
   9  * kind, whether express or implied; without even the implied warranty
  10  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11  * GNU General Public License for more details.
  12  */
  13 #include <linux/init.h>
  14 #include <linux/clk-provider.h>
  15 #include <linux/of.h>
  16 #include "clk-iproc.h"
  17 
  18 static void __init bcm63138_armpll_init(struct device_node *node)
  19 {
  20         iproc_armpll_setup(node);
  21 }
  22 CLK_OF_DECLARE(bcm63138_armpll, "brcm,bcm63138-armpll", bcm63138_armpll_init);

/* [<][>][^][v][top][bottom][index][help] */