Commit cbc2af3c authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: unisys: Don't zero struct elements which will be memset away

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bbd4be30
...@@ -522,12 +522,7 @@ bus_info_clear(void *v) ...@@ -522,12 +522,7 @@ bus_info_clear(void *v)
struct visorchipset_bus_info *p = (struct visorchipset_bus_info *) v; struct visorchipset_bus_info *p = (struct visorchipset_bus_info *) v;
kfree(p->name); kfree(p->name);
p->name = NULL;
kfree(p->description); kfree(p->description);
p->description = NULL;
p->state.created = 0;
memset(p, 0, sizeof(struct visorchipset_bus_info)); memset(p, 0, sizeof(struct visorchipset_bus_info));
} }
...@@ -537,7 +532,6 @@ dev_info_clear(void *v) ...@@ -537,7 +532,6 @@ dev_info_clear(void *v)
struct visorchipset_device_info *p = struct visorchipset_device_info *p =
(struct visorchipset_device_info *) v; (struct visorchipset_device_info *) v;
p->state.created = 0;
memset(p, 0, sizeof(struct visorchipset_device_info)); memset(p, 0, sizeof(struct visorchipset_device_info));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment