Change functions that always return '0' to be void type. Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com> Reviewed-by: Maciej Patelczyk <maciej.patelczyk@intel.com> Signed-off-by: Matthew Auld <matthew.auld@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20220321122759.227091-1-andi.shyti@linux.intel.com
21 lines
602 B
C
21 lines
602 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef INTEL_GT_PM_DEBUGFS_H
|
|
#define INTEL_GT_PM_DEBUGFS_H
|
|
|
|
struct intel_gt;
|
|
struct dentry;
|
|
struct drm_printer;
|
|
|
|
void intel_gt_pm_debugfs_register(struct intel_gt *gt, struct dentry *root);
|
|
void intel_gt_pm_frequency_dump(struct intel_gt *gt, struct drm_printer *m);
|
|
|
|
/* functions that need to be accessed by the upper level non-gt interfaces */
|
|
void intel_gt_pm_debugfs_forcewake_user_open(struct intel_gt *gt);
|
|
void intel_gt_pm_debugfs_forcewake_user_release(struct intel_gt *gt);
|
|
|
|
#endif /* INTEL_GT_PM_DEBUGFS_H */
|