android_kernel_xiaomi_sm8350/techpack/display/rotator/sde_rotator_r3_debug.h
Michael Bestas 23b65c3a24
Add 'techpack/display/' from tag 'LA.UM.9.14.r1-18300-LAHAINA.0'
git-subtree-dir: techpack/display
git-subtree-mainline: 2d46776923
git-subtree-split: 64f31403b4
Change-Id: I7f4c42a3ba6b11a8db861cdd171a52d8f58f2e06
2022-05-19 00:04:54 +03:00

26 lines
559 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (c) 2015-2019, The Linux Foundation. All rights reserved.
*/
#ifndef __SDE_ROTATOR_R3_DEBUG_H__
#define __SDE_ROTATOR_R3_DEBUG_H__
#include <linux/types.h>
#include <linux/dcache.h>
struct sde_rot_mgr;
#if defined(CONFIG_DEBUG_FS)
int sde_rotator_r3_create_debugfs(struct sde_rot_mgr *mgr,
struct dentry *debugfs_root);
#else
static inline
int sde_rotator_r3_create_debugfs(struct sde_rot_mgr *mgr,
struct dentry *debugfs_root)
{
return 0;
}
#endif
#endif /* __SDE_ROTATOR_R3_DEBUG_H__ */