mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
0785dfd8a7
Remove SECURE_IOU option which is not needed. U-Boot itself can detect which EL level it is on and based on that use do platform setup. It also simplify usage because one Kconfig entry is gone. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
14 lines
304 B
C
14 lines
304 B
C
/*
|
|
* (C) Copyright 2014 - 2015 Xilinx, Inc.
|
|
* Michal Simek <michal.simek@xilinx.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _ASM_ARCH_CLK_H_
|
|
#define _ASM_ARCH_CLK_H_
|
|
|
|
unsigned long get_uart_clk(int dev_id);
|
|
unsigned long zynqmp_get_system_timer_freq(void);
|
|
|
|
#endif /* _ASM_ARCH_CLK_H_ */
|