blob: 4e49b5bf3755a91ec89eeb7416c857c4a87393c2 [file] [log] [blame]
Peng Fane4cf8d72018-10-18 14:28:26 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2018 NXP
4 */
5
Simon Glass3ba929a2020-10-30 21:38:53 -06006#include <asm/global_data.h>
Peng Fane4cf8d72018-10-18 14:28:26 +02007#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}