amdfwtool: Add missing parentheses in macro definition
Change-Id: I1b43dbb8cdc748960f25d7b0629aa81528a2a476 Signed-off-by: Zheng Bao <fishbaozi@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/73179 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
This commit is contained in:
parent
c26108f603
commit
c38f76410b
|
@ -469,7 +469,7 @@ typedef struct _context {
|
|||
#define RUN_OFFSET_MODE(ctx, offset, mode) \
|
||||
((mode) == AMD_ADDR_PHYSICAL ? RUN_BASE(ctx) + (offset) : \
|
||||
((mode) == AMD_ADDR_REL_BIOS ? (offset) : \
|
||||
((mode) == AMD_ADDR_REL_TAB ? (offset) - ctx.current_table : (offset))))
|
||||
((mode) == AMD_ADDR_REL_TAB ? (offset) - (ctx).current_table : (offset))))
|
||||
#define RUN_OFFSET(ctx, offset) RUN_OFFSET_MODE((ctx), (offset), (ctx).address_mode)
|
||||
#define RUN_TO_OFFSET(ctx, run) ((ctx).address_mode == AMD_ADDR_PHYSICAL ? \
|
||||
(run) - RUN_BASE(ctx) : (run)) /* TODO: */
|
||||
|
|
Loading…
Reference in New Issue