Changeset 00081b3 in rtems
- Timestamp:
- 01/11/22 16:59:34 (6 months ago)
- Branches:
- master
- Children:
- 37377b0
- Parents:
- cbc9232
- git-author:
- Sebastian Huber <sebastian.huber@…> (01/11/22 16:59:34)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (01/11/22 17:01:17)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
bsps/shared/start/bsp-fdt.c
rcbc9232 r00081b3 29 29 30 30 #ifdef BSP_FDT_BLOB_READ_ONLY 31 static const uint32_t32 bsp_fdt_blob[BSP_FDT_BLOB_SIZE_MAX / sizeof(uint32_t)] CPU_STRUCTURE_ALIGNMENT=31 static RTEMS_ALIGNED(8) const uint32_t 32 bsp_fdt_blob[BSP_FDT_BLOB_SIZE_MAX / sizeof(uint32_t)] = 33 33 { 0xdeadbeef }; 34 34 #else 35 static uint32_t36 bsp_fdt_blob[BSP_FDT_BLOB_SIZE_MAX / sizeof(uint32_t)] CPU_STRUCTURE_ALIGNMENT;35 static RTEMS_ALIGNED(8) uint32_t 36 bsp_fdt_blob[BSP_FDT_BLOB_SIZE_MAX / sizeof(uint32_t)]; 37 37 #endif 38 38 -
testsuites/libtests/libfdt01/some.c
rcbc9232 r00081b3 5 5 */ 6 6 7 #include < sys/types.h>7 #include <rtems.h> 8 8 9 const unsigned char some_bin[] = {9 RTEMS_ALIGNED(8) const unsigned char some_bin[] = { 10 10 0xd0, 0x0d, 0xfe, 0xed, 0x00, 0x00, 0x01, 0xd8, 0x00, 0x00, 0x00, 0x38, 11 11 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x11,
Note: See TracChangeset
for help on using the changeset viewer.