linux/include/soc/tegra/emc.h
<<
>>
Prefs
   1/*
   2 * Copyright (c) 2014 NVIDIA Corporation. All rights reserved.
   3 *
   4 * This program is free software; you can redistribute it and/or modify
   5 * it under the terms of the GNU General Public License version 2 as
   6 * published by the Free Software Foundation.
   7 */
   8
   9#ifndef __SOC_TEGRA_EMC_H__
  10#define __SOC_TEGRA_EMC_H__
  11
  12struct tegra_emc;
  13
  14int tegra_emc_prepare_timing_change(struct tegra_emc *emc,
  15                                    unsigned long rate);
  16void tegra_emc_complete_timing_change(struct tegra_emc *emc,
  17                                      unsigned long rate);
  18
  19#endif /* __SOC_TEGRA_EMC_H__ */
  20