]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Staging: gdm724x: Remove confusing macro gdm_lte_rcv_with_cb in gdm_lte.c
authorRashika Kheria <rashika.kheria@gmail.com>
Thu, 7 Nov 2013 14:57:43 +0000 (20:27 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 10 Nov 2013 20:22:34 +0000 (12:22 -0800)
This patch removes confusing macro gdm_lte_rcv_with_cb as stated in TODO list
in file gdm_lte.c. It then fixes the place where the macro is used.

Signed-off-by: Rashika Kheria <rashika.kheria@gmail.com>
Reviewed-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gdm724x/gdm_lte.c

index c57a6ba5d010e84464632590c20e48e805d8681e..d061cd553053b99aee3942e28f3ca7a2e6f33dc1 100644 (file)
@@ -53,9 +53,6 @@
 #define gdm_lte_sdu_send(n, d, l, c, b, i, t) (\
        n->phy_dev->send_sdu_func(n->phy_dev->priv_dev, d, l, n->pdn_table.dft_eps_id, 0, c, b, i, t))
 
-#define gdm_lte_rcv_with_cb(n, c, b, e) (\
-       n->rcv_func(n->priv_dev, c, b, e))
-
 #define IP_VERSION_4   4
 #define IP_VERSION_6   6
 
@@ -762,7 +759,7 @@ void start_rx_proc(struct phy_dev *phy_dev)
        int i;
 
        for (i = 0; i < MAX_RX_SUBMIT_COUNT; i++)
-               gdm_lte_rcv_with_cb(phy_dev, rx_complete, phy_dev, USB_COMPLETE);
+               phy_dev->rcv_func(phy_dev->priv_dev, rx_complete, phy_dev, USB_COMPLETE);
 }
 
 static struct net_device_ops gdm_netdev_ops = {