mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-20 10:44:23 +08:00
staging: unisys: Don't zero struct elements which will be memset away
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
bbd4be301c
commit
cbc2af3cb5
@ -522,12 +522,7 @@ bus_info_clear(void *v)
|
||||
struct visorchipset_bus_info *p = (struct visorchipset_bus_info *) v;
|
||||
|
||||
kfree(p->name);
|
||||
p->name = NULL;
|
||||
|
||||
kfree(p->description);
|
||||
p->description = NULL;
|
||||
|
||||
p->state.created = 0;
|
||||
memset(p, 0, sizeof(struct visorchipset_bus_info));
|
||||
}
|
||||
|
||||
@ -537,7 +532,6 @@ dev_info_clear(void *v)
|
||||
struct visorchipset_device_info *p =
|
||||
(struct visorchipset_device_info *) v;
|
||||
|
||||
p->state.created = 0;
|
||||
memset(p, 0, sizeof(struct visorchipset_device_info));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user