|
@@ -1,5 +1,6 @@
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
/*
|
|
|
+ * Copyright (c) 2023-2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
|
* Copyright (c) 2015-2020, The Linux Foundation. All rights reserved.
|
|
|
*/
|
|
|
|
|
@@ -32,11 +33,7 @@ int sde_rotator_r3_create_debugfs(struct sde_rot_mgr *mgr,
|
|
|
|
|
|
hw_data = mgr->hw_data;
|
|
|
|
|
|
- if (!debugfs_create_bool("dbgmem", 0644,
|
|
|
- debugfs_root, &hw_data->dbgmem)) {
|
|
|
- SDEROT_ERR("fail create dbgmem\n");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
+ debugfs_create_bool("dbgmem", 0644, debugfs_root, &hw_data->dbgmem);
|
|
|
|
|
|
debugfs_create_u32("koff_timeout", 0644, debugfs_root, &hw_data->koff_timeout);
|
|
|
|