Changeset 001957b6 in mainline for kernel/generic/src/debug/util.c


Ignore:
Timestamp:
2023-10-26T20:20:55Z (15 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
0373af9
Parents:
2fbb42f
Message:

ccheck

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/debug/util.c

    r2fbb42f r001957b6  
    3333#include <debug/names.h>
    3434
    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
    3637 * in this compilation unit, so if the compiler decides not to inline some of
    3738 * them, only one external copy exists. See C99 inline rules.
     
    186187
    187188void print_block(const uint8_t **const data,
    188             const uint8_t *data_end, unsigned bytes)
     189    const uint8_t *data_end, unsigned bytes)
    189190{
    190191        while (bytes > 0 && *data < data_end) {
     
    196197
    197198void print_formed_data(unsigned form, const uint8_t **const data,
    198             const uint8_t *data_end, unsigned width)
     199    const uint8_t *data_end, unsigned width)
    199200{
    200201        size_t len;
     
    266267                uint64_t data1 = read_uint64(data, data_end);
    267268                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);
    269270                break;
    270271
Note: See TracChangeset for help on using the changeset viewer.