Fix a typo in the FAL_PART_MAGIC_WORD definition (#182)
This commit is contained in:
parent
b9b6fd00cd
commit
cd789e69eb
|
@ -25,8 +25,8 @@ extern struct fal_flash_dev nor_flash0;
|
||||||
/* partition table */
|
/* partition table */
|
||||||
#define FAL_PART_TABLE \
|
#define FAL_PART_TABLE \
|
||||||
{ \
|
{ \
|
||||||
{FAL_PART_MAGIC_WROD, "fdb_tsdb1", "norflash0", 0, 1024*1024, 0}, \
|
{FAL_PART_MAGIC_WORD, "fdb_tsdb1", "norflash0", 0, 1024*1024, 0}, \
|
||||||
{FAL_PART_MAGIC_WROD, "fdb_kvdb1", "norflash0", 1024*1024, 1024*1024, 0}, \
|
{FAL_PART_MAGIC_WORD, "fdb_kvdb1", "norflash0", 1024*1024, 1024*1024, 0}, \
|
||||||
}
|
}
|
||||||
#endif /* FAL_PART_HAS_TABLE_CFG */
|
#endif /* FAL_PART_HAS_TABLE_CFG */
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,6 @@
|
||||||
#define FAL_PART_MAGIC_WORD 0x45503130
|
#define FAL_PART_MAGIC_WORD 0x45503130
|
||||||
#define FAL_PART_MAGIC_WORD_H 0x4550L
|
#define FAL_PART_MAGIC_WORD_H 0x4550L
|
||||||
#define FAL_PART_MAGIC_WORD_L 0x3130L
|
#define FAL_PART_MAGIC_WORD_L 0x3130L
|
||||||
#define FAL_PART_MAGIC_WROD 0x45503130
|
|
||||||
|
|
||||||
struct part_flash_info
|
struct part_flash_info
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue