From: Shraddha Barke Date: Wed, 17 Feb 2016 12:32:34 +0000 (+0530) Subject: Staging: gdm72xx: Remove unnecessary parenthesis around function pointer X-Git-Tag: v4.6-rc1~103^2~601 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9eded76f510641c831e02a9112a5e240100aeeef;p=platform%2Fkernel%2Flinux-exynos.git Staging: gdm72xx: Remove unnecessary parenthesis around function pointer No need for the parentheses around any function pointer. Detected using checkpatch. Signed-off-by: Shraddha Barke Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/gdm72xx/gdm_wimax.c b/drivers/staging/gdm72xx/gdm_wimax.c index 988d71a..859880c 100644 --- a/drivers/staging/gdm72xx/gdm_wimax.c +++ b/drivers/staging/gdm72xx/gdm_wimax.c @@ -26,11 +26,11 @@ #include "netlink_k.h" #define gdm_wimax_send(n, d, l) \ - (n->phy_dev->send_func)(n->phy_dev->priv_dev, d, l, NULL, NULL) + n->phy_dev->send_func(n->phy_dev->priv_dev, d, l, NULL, NULL) #define gdm_wimax_send_with_cb(n, d, l, c, b) \ - (n->phy_dev->send_func)(n->phy_dev->priv_dev, d, l, c, b) + n->phy_dev->send_func(n->phy_dev->priv_dev, d, l, c, b) #define gdm_wimax_rcv_with_cb(n, c, b) \ - (n->phy_dev->rcv_func)(n->phy_dev->priv_dev, c, b) + n->phy_dev->rcv_func(n->phy_dev->priv_dev, c, b) #define EVT_MAX_SIZE 2048