aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOliver O'Halloran <oohall@gmail.com>2016-08-17 15:32:48 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2016-08-30 16:59:47 +1000
commitad461cc7a45ac2f8ed6f2c6373545d402e936502 (patch)
treed153d0986cb3c25be1e9939519d6751cf3b004c2 /include
parent9478b216e5678b1a2e738abe771a335588f0f072 (diff)
downloadskiboot-ad461cc7a45ac2f8ed6f2c6373545d402e936502.zip
skiboot-ad461cc7a45ac2f8ed6f2c6373545d402e936502.tar.gz
skiboot-ad461cc7a45ac2f8ed6f2c6373545d402e936502.tar.bz2
nvram: rename nvram-format.h to nvram.h
The NVRAM handling code was split into two files so that the partition parsing could be separately tested. Currently there is no nvram.h and the tests #include nvram-format.c directly. This patch renames nvram-format.h to something more sensible. Signed-off-by: Oliver O'Halloran <oohall@gmail.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r--include/nvram.h (renamed from include/nvram-format.h)6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/nvram-format.h b/include/nvram.h
index d7432a7..ce33d2f 100644
--- a/include/nvram-format.h
+++ b/include/nvram.h
@@ -14,10 +14,10 @@
* limitations under the License.
*/
-#ifndef __NVRAM_FORMAT_H
-#define __NVRAM_FORMAT_H
+#ifndef __NVRAM_H
+#define __NVRAM_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 */
+#endif /* __NVRAM_H */