aboutsummaryrefslogtreecommitdiff
path: root/fmb_driver/fmb.h
diff options
context:
space:
mode:
Diffstat (limited to 'fmb_driver/fmb.h')
-rw-r--r--fmb_driver/fmb.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/fmb_driver/fmb.h b/fmb_driver/fmb.h
new file mode 100644
index 0000000..62b5b25
--- /dev/null
+++ b/fmb_driver/fmb.h
@@ -0,0 +1,48 @@
+/**
+* @brief common header file for MB86 LSI Linux driver
+* @since 2009/01/08
+* @note None
+* @attention None
+* <B><I>COPYRIGHT FUJITSU LIMITED 2009</I></B>
+*/
+
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ */
+
+/****************************************************************************/
+#ifndef __FMB_H__
+#define __FMB_H__
+
+//#include <linux/config.h>
+#include <linux/version.h>
+#include <linux/module.h>
+#include <linux/init.h>
+#include <linux/kernel.h>
+#include <linux/string.h>
+#include <linux/errno.h>
+#include <linux/slab.h>
+#include <linux/interrupt.h>
+#include <linux/timer.h>
+#include <linux/pci.h>
+#include <linux/delay.h>
+#include <linux/cdev.h>
+#include <linux/types.h>
+#include <linux/poll.h>
+#include <asm/io.h>
+#include <asm/uaccess.h>
+#include <linux/sched.h>
+#include <linux/wait.h>
+
+#include "fmb_msg.h"
+#include "fmb_hw.h"
+#include "fmb_core.h"
+
+/********************************************************/
+/* GROBAL VALUES */
+/********************************************************/
+
+#endif /* ndef __FMB_H__ */