blob: 4eddaca8879874140945435291634a3a0644abc5 [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
Marek BehĂșnd1cc32d2021-05-20 13:24:15 +020017int __weak clk_bsc_enable(void *base)
Darwin Rambo5d6c3152014-02-11 11:06:33 -080018{
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}