Changeset 001957b6 in mainline for kernel/generic/src/debug/util.c
- Timestamp:
- 2023-10-26T20:20:55Z (15 months ago)
- Branches:
- master, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0373af9
- Parents:
- 2fbb42f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/debug/util.c
r2fbb42f r001957b6 33 33 #include <debug/names.h> 34 34 35 /* These declarations cause global definitions for the functions to be emitted 35 /* 36 * These declarations cause global definitions for the functions to be emitted 36 37 * in this compilation unit, so if the compiler decides not to inline some of 37 38 * them, only one external copy exists. See C99 inline rules. … … 186 187 187 188 void print_block(const uint8_t **const data, 188 189 const uint8_t *data_end, unsigned bytes) 189 190 { 190 191 while (bytes > 0 && *data < data_end) { … … 196 197 197 198 void print_formed_data(unsigned form, const uint8_t **const data, 198 199 const uint8_t *data_end, unsigned width) 199 200 { 200 201 size_t len; … … 266 267 uint64_t data1 = read_uint64(data, data_end); 267 268 uint64_t data2 = read_uint64(data, data_end); 268 DEBUGF("0x%016" PRIx64"%016"PRIx64, data2, data1);269 DEBUGF("0x%016" PRIx64 "%016" PRIx64, data2, data1); 269 270 break; 270 271
Note:
See TracChangeset
for help on using the changeset viewer.