brintos

brintos / linux-shallow public Read only

0
0
Text · 362 B · c838383 Raw
13 lines · c
1// SPDX-License-Identifier: GPL-2.0-only2// Copyright (C) 2015 Broadcom Corporation3#include <linux/init.h>4#include <linux/clk-provider.h>5#include <linux/of.h>6#include "clk-iproc.h"7 8static void __init bcm63138_armpll_init(struct device_node *node)9{10	iproc_armpll_setup(node);11}12CLK_OF_DECLARE(bcm63138_armpll, "brcm,bcm63138-armpll", bcm63138_armpll_init);13