Observe that intel_pm.[ch] is now purely about clock gating, so rename them to intel_clock_gating.[ch]. Rename the functions to intel_clock_gating_*() to follow coding conventions. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230403122428.3526263-1-jani.nikula@intel.com
15 lines
342 B
C
15 lines
342 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __INTEL_CLOCK_GATING_H__
|
|
#define __INTEL_CLOCK_GATING_H__
|
|
|
|
struct drm_i915_private;
|
|
|
|
void intel_clock_gating_init(struct drm_i915_private *i915);
|
|
void intel_clock_gating_hooks_init(struct drm_i915_private *i915);
|
|
|
|
#endif /* __INTEL_CLOCK_GATING_H__ */
|