Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca93dcba authored by Mateusz Kulikowski's avatar Mateusz Kulikowski Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192e: Remove assert() macro



Assert macro printed warning message (and was used once).
Remove it, and add netdev_warn() in place where it was called.

Signed-off-by: default avatarMateusz Kulikowski <mateusz.kulikowski@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent db65e4aa
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1885,8 +1885,9 @@ void rtl8192_hard_data_xmit(struct sk_buff *skb, struct net_device *dev,
		return;
	}

	assert(queue_index != TXCMD_QUEUE);

	if (queue_index != TXCMD_QUEUE)
		netdev_warn(dev, "%s(): queue index != TXCMD_QUEUE\n",
			    __func__);

	memcpy((unsigned char *)(skb->cb), &dev, sizeof(dev));
	skb_push(skb, priv->rtllib->tx_headroom);
+0 −8
Original line number Diff line number Diff line
@@ -76,12 +76,4 @@ do { \
		printk(KERN_DEBUG DRV_NAME ":" x "\n", ##args);\
} while (0)

#define assert(expr) \
do {	\
	if (!(expr)) {				  \
		pr_info("Assertion failed! %s,%s,%s,line=%d\n", \
		#expr, __FILE__, __func__, __LINE__);	  \
	}	\
} while (0)

#endif