linux/drivers/net/ethernet/netronome/nfp/nfp_net_debugfs.c

// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
/* Copyright (C) 2015-2019 Netronome Systems, Inc. */
#include <linux/debugfs.h>
#include <linux/module.h>
#include <linux/rtnetlink.h>

#include "nfp_net.h"
#include "nfp_net_dp.h"

static struct dentry *nfp_dir;

static int nfp_rx_q_show(struct seq_file *file, void *data)
{}
DEFINE_SHOW_ATTRIBUTE();

static int nfp_tx_q_show(struct seq_file *file, void *data);
DEFINE_SHOW_ATTRIBUTE();

static int nfp_tx_q_show(struct seq_file *file, void *data)
{}

static int nfp_xdp_q_show(struct seq_file *file, void *data)
{}
DEFINE_SHOW_ATTRIBUTE();

void nfp_net_debugfs_vnic_add(struct nfp_net *nn, struct dentry *ddir)
{}

struct dentry *nfp_net_debugfs_device_add(struct pci_dev *pdev)
{}

void nfp_net_debugfs_dir_clean(struct dentry **dir)
{}

void nfp_net_debugfs_create(void)
{}

void nfp_net_debugfs_destroy(void)
{}