summaryrefslogtreecommitdiff
path: root/include/rtems/nvdisk-sram.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rtems/nvdisk-sram.h')
-rw-r--r--include/rtems/nvdisk-sram.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/rtems/nvdisk-sram.h b/include/rtems/nvdisk-sram.h
new file mode 100644
index 0000000000..3acaf600b6
--- /dev/null
+++ b/include/rtems/nvdisk-sram.h
@@ -0,0 +1,23 @@
+/**
+ * @file rtems/nvdisk-sram.h
+ *
+ * This driver maps an NV disk to static RAM. You can use this
+ */
+
+/*
+ * RTEMS Project (http://www.rtems.org/)
+ *
+ * Copyright 2007 Chris Johns (chrisj@rtems.org)
+ */
+
+#if !defined (_RTEMS_NVDISK_SRAM_H_)
+#define _RTEMS_NVDISK_SRAM_H_
+
+#include <rtems/nvdisk.h>
+
+/**
+ * The handlers for the NV Disk SRAM driver.
+ */
+extern const rtems_nvdisk_driver_handlers rtems_nvdisk_sram_handlers;
+
+#endif