blob: 338e0e4962fb0b996716ed44e99a16fc3c2c0d2f [file] [log] [blame]
Darwin Rambob3134fc2014-02-11 11:06:33 -08001/*
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 */
13int __weak clk_sdio_enable(void *base, u32 rate, u32 *actual_ratep)
14{
15 return 0;
16}
17
18int __weak clk_bsc_enable(void *base, u32 rate, u32 *actual_ratep)
19{
20 return 0;
21}