Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1649014

[PATCH 6/8] firmware: vpd: do not clear statically allocated data

From Dmitry Torokhov <dmitry.torokhov@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 6/8] firmware: vpd: do not clear statically allocated data
Date 2017-05-24 02:10 +0200
Message-ID <tKs2e-2wM-15@gated-at.bofh.it> (permalink)
References <tKs2e-2wM-17@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


ro_vpd and rw_vpd are static module-scope variables that are guaranteed
to be initialized with zeroes, there is no need for explicit memset().

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/firmware/google/vpd.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/firmware/google/vpd.c b/drivers/firmware/google/vpd.c
index 3463b8037ed8..78945729388e 100644
--- a/drivers/firmware/google/vpd.c
+++ b/drivers/firmware/google/vpd.c
@@ -317,9 +317,6 @@ static int __init vpd_platform_init(void)
 	if (!vpd_kobj)
 		return -ENOMEM;
 
-	memset(&ro_vpd, 0, sizeof(ro_vpd));
-	memset(&rw_vpd, 0, sizeof(rw_vpd));
-
 	platform_driver_register(&vpd_driver);
 
 	return 0;
-- 
2.13.0.219.gdb65acc882-goog

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH 6/8] firmware: vpd: do not clear statically allocated data Dmitry Torokhov <dmitry.torokhov@gmail.com> - 2017-05-24 02:10 +0200
  Re: [PATCH 6/8] firmware: vpd: do not clear statically allocated data Guenter Roeck <groeck@google.com> - 2017-05-24 19:20 +0200

csiph-web