build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38349 )
Change subject: util/pmh7tool: Support OpenBSD ......................................................................
Patch Set 2:
(2 comments)
https://review.coreboot.org/c/coreboot/+/38349/2/util/pmh7tool/pmh7tool.c File util/pmh7tool/pmh7tool.c:
https://review.coreboot.org/c/coreboot/+/38349/2/util/pmh7tool/pmh7tool.c@33 PS2, Line 33: __asm volatile("inb %w1,%0" : "=a" (data) : "d" (port)); Prefer using '"%s...", __func__' to using 'inb', this function's name, in a string
https://review.coreboot.org/c/coreboot/+/38349/2/util/pmh7tool/pmh7tool.c@38 PS2, Line 38: __asm volatile("outb %0,%w1" : : "a" (data), "d" (port)); Prefer using '"%s...", __func__' to using 'outb', this function's name, in a string