diff options
Diffstat (limited to 'src/northbridge/intel/x4x/early_init.c')
-rw-r--r-- | src/northbridge/intel/x4x/early_init.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/northbridge/intel/x4x/early_init.c b/src/northbridge/intel/x4x/early_init.c index de261bda7d..1de9e2868b 100644 --- a/src/northbridge/intel/x4x/early_init.c +++ b/src/northbridge/intel/x4x/early_init.c @@ -38,9 +38,8 @@ void x4x_early_init(void) /* Enable internal GFX */ pci_write_config32(HOST_BRIDGE, D0F0_DEVEN, BOARD_DEVEN); - /* Set preallocated IGD size from CMOS */ - u8 gfxsize = 6; /* 6 for 64MiB, default if not set in CMOS */ - get_option(&gfxsize, "gfx_uma_size"); + /* Set preallocated IGD size from CMOS, or default to 64 MiB */ + u8 gfxsize = get_int_option("gfx_uma_size", 6); if (gfxsize > 12) gfxsize = 6; /* Need at least 4M for cbmem_top alignment */ |