Files
linux-nv-oot/drivers/platform/tegra/dce/include/dce-debug-perf.h
Laxman Dewangan b20c5f57e3 dce: Use SPDX license GPL 2.0-only format
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>
2023-04-21 11:41:56 -07:00

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