blob: d747e1332f04a242dc1f7362f4e14f60a1d45ddb [file] [log] [blame]
Peng Fan2d582962018-10-18 14:28:26 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2018 NXP
4 */
5
6#include <common.h>
7#include <linux/errno.h>
8#include <asm/arch/clock.h>
9
10DECLARE_GLOBAL_DATA_PTR;
11
12u32 mxc_get_clock(enum mxc_clock clk)
13{
14 switch (clk) {
15 default:
16 printf("Unsupported mxc_clock %d\n", clk);
17 break;
18 }
19
20 return 0;
21}