diff options
author | Oliver O'Halloran <oohall@gmail.com> | 2016-08-17 15:32:48 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2016-08-30 16:59:47 +1000 |
commit | ad461cc7a45ac2f8ed6f2c6373545d402e936502 (patch) | |
tree | d153d0986cb3c25be1e9939519d6751cf3b004c2 /core/nvram.c | |
parent | 9478b216e5678b1a2e738abe771a335588f0f072 (diff) | |
download | talos-skiboot-ad461cc7a45ac2f8ed6f2c6373545d402e936502.tar.gz talos-skiboot-ad461cc7a45ac2f8ed6f2c6373545d402e936502.zip |
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 'core/nvram.c')
-rw-r--r-- | core/nvram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/nvram.c b/core/nvram.c index c64c4315..9a9a6ff3 100644 --- a/core/nvram.c +++ b/core/nvram.c @@ -20,7 +20,7 @@ #include <lock.h> #include <device.h> #include <platform.h> -#include <nvram-format.h> +#include <nvram.h> static void *nvram_image; static uint32_t nvram_size; |