#ifndef IEEE1394_MEM1394_H
#define IEEE1394_MEM1394_H

#include <asm/types.h>
#include <linux/cdev.h>
#include <linux/list.h>
#include "nodemgr.h"

struct mem1394_dev {
	struct device *dev;
	struct node_entry *ne;
	struct cdev cdev;
	struct list_head list;
};

struct mem1394_file_info {
	struct mem1394_dev *memdev;
};

#endif /* IEEE1394_MEM1394_H */
