spbx/roms/srcs/images/ethernet/ucc_eth/debugfs.h

17 lines
377 B
C

#ifndef DEBUGFS_H
#define DEBUGFS_H
typedef struct debugfs_priv{
const char name[32];
uint8_t options[32];
void *file;
void *data;
int (* show)(struct seq_file* , void* );
}debugfs_priv_t;
extern int umb_register_seqfs(struct debugfs_priv *pv );
extern int umb_unregister_seqfs(struct debugfs_priv *pv);
int umb_debugfs_init(void);
void umb_debugfs_exit(void);
#endif