Skip to content

Commit 3b51b6f

Browse files
matt-auldjlahtine-intel
authored andcommitted
x86/early-quirks: replace the magical increment start values
Replace the magical +2, +9 etc. with +MB, which is far easier to read. Suggested-by: Ville Syrjälä <[email protected]> Signed-off-by: Matthew Auld <[email protected]> Cc: Joonas Lahtinen <[email protected]> Cc: Ville Syrjälä <[email protected]> Cc: Chris Wilson <[email protected]> Cc: Paulo Zanoni <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: H. Peter Anvin <[email protected]> Cc: [email protected] Cc: [email protected] Reviewed-by: Ville Syrjälä <[email protected]> Acked-by: Ingo Molnar <[email protected]> Signed-off-by: Joonas Lahtinen <[email protected]> Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
1 parent 55f56fc commit 3b51b6f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

arch/x86/kernel/early-quirks.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ static resource_size_t __init chv_stolen_size(int num, int slot, int func)
428428
if (gms < 0x11)
429429
return gms * MB(32);
430430
else if (gms < 0x17)
431-
return (gms - 0x11 + 2) * MB(4);
431+
return (gms - 0x11) * MB(4) + MB(8);
432432
else
433-
return (gms - 0x17 + 9) * MB(4);
433+
return (gms - 0x17) * MB(4) + MB(36);
434434
}
435435

436436
static resource_size_t __init gen9_stolen_size(int num, int slot, int func)
@@ -446,7 +446,7 @@ static resource_size_t __init gen9_stolen_size(int num, int slot, int func)
446446
if (gms < 0xf0)
447447
return gms * MB(32);
448448
else
449-
return (gms - 0xf0 + 1) * MB(4);
449+
return (gms - 0xf0) * MB(4) + MB(4);
450450
}
451451

452452
struct intel_early_ops {

0 commit comments

Comments
 (0)