blob: 33c6843c3f7159a6d3e4e3a470c07f5840e70556 [file] [log] [blame]
Michael Walle9b3843f2021-03-26 19:40:59 +01001// SPDX-License-Identifier: GPL-2.0+
2
3#include <common.h>
4#include <asm/global_data.h>
5
6DECLARE_GLOBAL_DATA_PTR;
7
8u32 get_lpuart_clk(void)
9{
10 return gd->bus_clk / CONFIG_SYS_FSL_LPUART_CLK_DIV;
11}