src/drivers: Remove whitespace after memcpy & memset
Change-Id: If79eb706b6d44f7c34dfe31a1545f5850870b334 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16866 Tested-by: build bot (Jenkins) Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
committed by
Martin Roth
parent
ec28aadbd1
commit
9b865b47b0
@@ -32,7 +32,7 @@ static size_t generate_vbt(const struct i915_gpu_controller_info *conf,
|
||||
struct bdb_general_features *genfeat;
|
||||
u8 *ptr;
|
||||
|
||||
memset (head, 0, sizeof (*head));
|
||||
memset(head, 0, sizeof (*head));
|
||||
|
||||
memset(head->signature, ' ', sizeof(head->signature));
|
||||
memcpy(head->signature, idstr, MIN(strlen(idstr),
|
||||
@@ -42,8 +42,8 @@ static size_t generate_vbt(const struct i915_gpu_controller_info *conf,
|
||||
head->bdb_offset = sizeof (*head);
|
||||
|
||||
bdb_head = (struct bdb_header *) (head + 1);
|
||||
memset (bdb_head, 0, sizeof (*bdb_head));
|
||||
memcpy (bdb_head->signature, "BIOS_DATA_BLOCK ", 16);
|
||||
memset(bdb_head, 0, sizeof (*bdb_head));
|
||||
memcpy(bdb_head->signature, "BIOS_DATA_BLOCK ", 16);
|
||||
bdb_head->version = 0xa8;
|
||||
bdb_head->header_size = sizeof (*bdb_head);
|
||||
|
||||
@@ -55,7 +55,7 @@ static size_t generate_vbt(const struct i915_gpu_controller_info *conf,
|
||||
ptr += 3;
|
||||
|
||||
genfeat = (struct bdb_general_features *) ptr;
|
||||
memset (genfeat, 0, sizeof (*genfeat));
|
||||
memset(genfeat, 0, sizeof (*genfeat));
|
||||
genfeat->panel_fitting = 3;
|
||||
genfeat->flexaim = 1;
|
||||
genfeat->download_ext_vbt = 1;
|
||||
|
Reference in New Issue
Block a user