blob: 2dfa3f7e731453886159400f0abab7a991d5de5f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Darwin Rambo5d6c3152014-02-11 11:06:33 -08002/*
3 * Copyright 2013 Broadcom Corporation.
Darwin Rambo5d6c3152014-02-11 11:06:33 -08004 */
5
6#include <common.h>
7
8/*
9 * These weak functions are available to kona architectures that don't
10 * require clock enables from the driver code.
11 */
12int __weak clk_sdio_enable(void *base, u32 rate, u32 *actual_ratep)
13{
14 return 0;
15}
16
17int __weak clk_bsc_enable(void *base, u32 rate, u32 *actual_ratep)
18{
19 return 0;
20}
Steve Raed1a8ecd2014-12-09 11:40:11 -080021
22int __weak clk_usb_otg_enable(void *base)
23{
24 return 0;
25}