mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 17:25:35 +03:00
Use SPDX license GPL-V2.0 format and change Nvidia copyright year to include 2023. Bug 4078035 Change-Id: Icc0060431eb8d9c470a44f4cee50913cc1d8048a Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2890656 Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Arun Swain <arswain@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
34 lines
1.1 KiB
C
34 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef DCE_DEBUG_PERF_H
|
|
#define DCE_DEBUG_PERF_H
|
|
|
|
#include <linux/debugfs.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
int dbg_dce_perf_stats_stats_fops_open(struct inode *inode,
|
|
struct file *file);
|
|
ssize_t dbg_dce_perf_stats_stats_fops_write(struct file *file,
|
|
const char __user *user_buf,
|
|
size_t count, loff_t *ppos);
|
|
|
|
int dbg_dce_perf_stats_help_fops_open(struct inode *inode,
|
|
struct file *file);
|
|
|
|
ssize_t dbg_dce_perf_format_fops_write(struct file *file,
|
|
const char __user *user_buf,
|
|
size_t count, loff_t *ppos);
|
|
int dbg_dce_perf_format_fops_open(struct inode *inode, struct file *file);
|
|
|
|
int dbg_dce_perf_events_events_fops_open(struct inode *inode,
|
|
struct file *file);
|
|
ssize_t dbg_dce_perf_events_events_fops_write(struct file *file,
|
|
const char __user *user_buf,
|
|
size_t count, loff_t *ppos);
|
|
int dbg_dce_perf_events_help_fops_open(struct inode *inode,
|
|
struct file *file);
|
|
#endif
|