staging: unisys: Remove unncessary parenthesis

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:
Jes Sorensen 2015-05-05 18:35:43 -04:00 committed by Greg Kroah-Hartman
parent b70b9099f0
commit bbd4be301c
1 changed files with 2 additions and 2 deletions

View File

@ -519,7 +519,7 @@ static ssize_t remaining_steps_store(struct device *dev,
static void
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);
p->name = NULL;
@ -535,7 +535,7 @@ static void
dev_info_clear(void *v)
{
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));