linux/drivers/net/fjes/fjes_debugfs.c

// SPDX-License-Identifier: GPL-2.0-only
/*
 *  FUJITSU Extended Socket Network Device driver
 *  Copyright (c) 2015-2016 FUJITSU LIMITED
 */

/* debugfs support for fjes driver */

#ifdef CONFIG_DEBUG_FS

#include <linux/debugfs.h>
#include <linux/seq_file.h>
#include <linux/platform_device.h>

#include "fjes.h"

static struct dentry *fjes_debug_root;

static const char * const ep_status_string[] =;

static int fjes_dbg_status_show(struct seq_file *m, void *v)
{}
DEFINE_SHOW_ATTRIBUTE();

void fjes_dbg_adapter_init(struct fjes_adapter *adapter)
{}

void fjes_dbg_adapter_exit(struct fjes_adapter *adapter)
{}

void fjes_dbg_init(void)
{}

void fjes_dbg_exit(void)
{}

#endif /* CONFIG_DEBUG_FS */