mirror of
https://github.com/armink/FlashDB
synced 2025-03-28 21:13:13 +00:00
[inc/fdb_low_lvl] fix An error occurred in FDB_ALIGN(size, align) when align is not 2 to the nth power
This commit is contained in:
parent
fab8a16180
commit
b8d15a323c
@ -29,7 +29,7 @@
|
||||
/* Return the most contiguous size aligned at specified width. RT_ALIGN(13, 4)
|
||||
* would return 16.
|
||||
*/
|
||||
#define FDB_ALIGN(size, align) (((size) + (align) - 1) & ~((align) - 1))
|
||||
#define FDB_ALIGN(size, align) ((size + align - 1) - ((size + align -1) % align))
|
||||
/* align by write granularity */
|
||||
#define FDB_WG_ALIGN(size) (FDB_ALIGN(size, (FDB_WRITE_GRAN + 7)/8))
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user