staging: unisys: visorchannel: Remove unnecessary parentheses
authorBryan Thompson <bryan.thompson@unisys.com>
Thu, 6 Nov 2014 19:13:07 +0000 (14:13 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Nov 2014 17:22:01 +0000 (09:22 -0800)
Remove extraneous parentheses around a variable in visorchannel_funcs.c

Signed-off-by: Bryan Thompson <bryan.thompson@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/visorchannel/visorchannel_funcs.c

index eff9d0ee14c1b434d86e2bb3c0a4ccc9b093ad34..66094a32f49562ed539ae26335f98eacf57ee26d 100644 (file)
@@ -287,7 +287,7 @@ EXPORT_SYMBOL_GPL(visorchannel_clear);
 void __iomem  *
 visorchannel_get_header(VISORCHANNEL *channel)
 {
-       return (void __iomem *)&(channel->chan_hdr);
+       return (void __iomem *)&channel->chan_hdr;
 }
 EXPORT_SYMBOL_GPL(visorchannel_get_header);
 
This page took 0.025214 seconds and 5 git commands to generate.