summaryrefslogtreecommitdiff
path: root/cleopatre/devkit/tests/plcdrv
diff options
context:
space:
mode:
authorCyril Jourdan2012-08-08 11:36:23 +0200
committerCyril Jourdan2012-09-20 10:25:34 +0200
commit7bc5e92c16dc75b9afe13535010c153e3024412d (patch)
treebfe5395814a90908226b1a5f231676f902632f1a /cleopatre/devkit/tests/plcdrv
parentd0de9b685d1966d015cb1289e81ea77aa72f607a (diff)
{cleo, common}: rename spc300_nvram into spidcom_nvram, refs #3119
This is done to use common NVRAM structure and variable names with polux.
Diffstat (limited to 'cleopatre/devkit/tests/plcdrv')
-rw-r--r--cleopatre/devkit/tests/plcdrv/utests/stub/linux/inc/asm/arch/nvram.h4
-rw-r--r--cleopatre/devkit/tests/plcdrv/utests/stub/linux/src/spc300.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/cleopatre/devkit/tests/plcdrv/utests/stub/linux/inc/asm/arch/nvram.h b/cleopatre/devkit/tests/plcdrv/utests/stub/linux/inc/asm/arch/nvram.h
index 180868a766..a15e10b8c5 100644
--- a/cleopatre/devkit/tests/plcdrv/utests/stub/linux/inc/asm/arch/nvram.h
+++ b/cleopatre/devkit/tests/plcdrv/utests/stub/linux/inc/asm/arch/nvram.h
@@ -30,8 +30,8 @@ typedef struct
char manufactory_info[64]; // Name of the product manufacturer
uint32_t img_max_size; // Max size of an image in flash
uint32_t cpu_partnb; // SPC3x0 partnb
-} spc300_nvram_t; //Currently __attribute__((packed)) not needed
+} spidcom_nvram_t; //Currently __attribute__((packed)) not needed
-extern spc300_nvram_t spc300_nvram;
+extern spidcom_nvram_t spidcom_nvram;
#endif /* stub_linux_inc_linux_asm_arch_nvram_h */
diff --git a/cleopatre/devkit/tests/plcdrv/utests/stub/linux/src/spc300.c b/cleopatre/devkit/tests/plcdrv/utests/stub/linux/src/spc300.c
index eb3420b098..38ce89e223 100644
--- a/cleopatre/devkit/tests/plcdrv/utests/stub/linux/src/spc300.c
+++ b/cleopatre/devkit/tests/plcdrv/utests/stub/linux/src/spc300.c
@@ -1,6 +1,6 @@
#include <linux/types.h>
#include <asm/arch/nvram.h>
-spc300_nvram_t spc300_nvram;
+spidcom_nvram_t spidcom_nvram;
uint32_t spc300_plc_mem_start;
uint32_t spc300_plc_mem_size;