pcibase.h: remove superfluous spaces.

This commit is contained in:
Maxim Poliakovski 2024-04-07 18:29:48 +02:00
parent 9ed1a118e6
commit 19dcb43658
1 changed files with 2 additions and 2 deletions

View File

@ -233,7 +233,7 @@ inline uint32_t pci_cfg_log(uint32_t value, AccessDetails &details) {
#define LOG_READ_NON_EXISTENT_PCI_DEVICE() \
LOG_F( \
ERROR, \
"%s err: read attempt from non-existent PCI device %02x:%02x.%x @%02x.%c", \
"%s err: read attempt from non-existent PCI device %02x:%02x.%x @%02x.%c", \
this->name.c_str(), bus_num, dev_num, fun_num, reg_offs + details.offset, \
SIZE_ARG(details.size) \
)
@ -241,7 +241,7 @@ inline uint32_t pci_cfg_log(uint32_t value, AccessDetails &details) {
#define LOG_WRITE_NON_EXISTENT_PCI_DEVICE() \
LOG_F( \
ERROR, \
"%s err: write attempt to non-existent PCI device %02x:%02x.%x @%02x.%c = %0*x", \
"%s err: write attempt to non-existent PCI device %02x:%02x.%x @%02x.%c = %0*x", \
this->name.c_str(), bus_num, dev_num, fun_num, reg_offs + details.offset, \
SIZE_ARG(details.size), \
details.size * 2, BYTESWAP_SIZED(value, details.size) \