drm/i915/bios: Round PCI ROM VBT allocation to multiple of 4

The SPI code rounds the VBT allocation to a multiple of four bytes
(presumably because it reads the VBT 4 bytes at a time). Do the
same for the PCI ROM side to eliminate pointless differences between
the two codepaths. This will make no functional difference.

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240923152453.11230-4-ville.syrjala@linux.intel.com
This commit is contained in:
Ville Syrjälä 2024-09-23 18:24:50 +03:00
parent 1533b4057f
commit 3823683a0f

View File

@ -3166,7 +3166,7 @@ static struct vbt_header *oprom_get_vbt(struct intel_display *display,
}
/* The rest will be validated by intel_bios_is_valid_vbt() */
vbt = kmalloc(vbt_size, GFP_KERNEL);
vbt = kmalloc(round_up(vbt_size, 4), GFP_KERNEL);
if (!vbt)
goto err_unmap_oprom;