UPSTREAM: src/drivers: Remove whitespace after memcpy & memset
BUG=None BRANCH=None TEST=None Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/16866 Tested-by: build bot (Jenkins) Reviewed-by: Jonathan Neuschfer <j.neuschaefer@gmx.net> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Martin Roth <martinroth@google.com> Change-Id: If79eb706b6d44f7c34dfe31a1545f5850870b334 Reviewed-on: https://chromium-review.googlesource.com/396155 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
78f22efe2a
commit
7fdef44f63
2 changed files with 11 additions and 11 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue