]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/armv7/kona-common/clk-stubs.c
Merge branch 'karo-tx-uboot' into kc-merge
[karo-tx-uboot.git] / arch / arm / cpu / armv7 / kona-common / clk-stubs.c
1 /*
2  * Copyright 2013 Broadcom Corporation.
3  *
4  * SPDX-License-Identifier:      GPL-2.0+
5  */
6
7 #include <common.h>
8
9 /*
10  * These weak functions are available to kona architectures that don't
11  * require clock enables from the driver code.
12  */
13 int __weak clk_sdio_enable(void *base, u32 rate, u32 *actual_ratep)
14 {
15         return 0;
16 }
17
18 int __weak clk_bsc_enable(void *base, u32 rate, u32 *actual_ratep)
19 {
20         return 0;
21 }
22
23 int __weak clk_usb_otg_enable(void *base)
24 {
25         return 0;
26 }