aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2015-07-01 14:04:44 +1000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2015-07-01 14:04:44 +1000
commitdd72c49c4c7ec924952bd5073e364d8c1417ccfd (patch)
tree6bdd9024e534de5e61dbebdf99eb0233c7610917 /include
parentf469c1f4df925f207fea4b727e5c0561af88bd9b (diff)
parent4153f5d6a76736f8ba9500880d8f0c1034bdd1b6 (diff)
downloadskiboot-dd72c49c4c7ec924952bd5073e364d8c1417ccfd.zip
skiboot-dd72c49c4c7ec924952bd5073e364d8c1417ccfd.tar.gz
skiboot-dd72c49c4c7ec924952bd5073e364d8c1417ccfd.tar.bz2
Merge remote-tracking branch 'github/master' into mergeback
Diffstat (limited to 'include')
-rw-r--r--include/nvram-format.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/nvram-format.h b/include/nvram-format.h
new file mode 100644
index 0000000..d7432a7
--- /dev/null
+++ b/include/nvram-format.h
@@ -0,0 +1,23 @@
+/* Copyright 2013-2014 IBM Corp.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ * implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __NVRAM_FORMAT_H
+#define __NVRAM_FORMAT_H
+
+int nvram_format(void *nvram_image, uint32_t nvram_size);
+int nvram_check(void *nvram_image, uint32_t nvram_size);
+
+#endif /* __NVRAM_FORMAT_H */