blob: b47a3a44be742e8246ac4e92d803f0330e31871b (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */
#include <soc/pll.h>
#include <soc/usb.h>
void mtk_usb_prepare(void)
{
mt_pll_enable_ssusb_clk();
}
|