blob: 9941b57b4be5160525b2f845ec1db5498945b5de [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>
Simon Glass401d1c42020-10-30 21:38:53 -06007#include <asm/global_data.h>
Peng Fan2d582962018-10-18 14:28:26 +02008#include <linux/errno.h>
9#include <asm/arch/clock.h>
10
11DECLARE_GLOBAL_DATA_PTR;
12
13u32 mxc_get_clock(enum mxc_clock clk)
14{
15 switch (clk) {
16 default:
17 printf("Unsupported mxc_clock %d\n", clk);
18 break;
19 }
20
21 return 0;
22}