Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.3-rc2 16 lines 405 B view raw
1/* SPDX-License-Identifier: GPL-2.0-only */ 2/* 3 * Copyright (c) 2014 NVIDIA Corporation. All rights reserved. 4 */ 5 6#ifndef __SOC_TEGRA_EMC_H__ 7#define __SOC_TEGRA_EMC_H__ 8 9struct tegra_emc; 10 11int tegra_emc_prepare_timing_change(struct tegra_emc *emc, 12 unsigned long rate); 13void tegra_emc_complete_timing_change(struct tegra_emc *emc, 14 unsigned long rate); 15 16#endif /* __SOC_TEGRA_EMC_H__ */