All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] This is a patch to the capi.c file that fixes one instance of the following error: ERROR: do not use assignment in if condition
@ 2016-11-06  8:55 Naeil ZOUEIDI
  2016-11-06  9:28 ` kbuild test robot
  0 siblings, 1 reply; 2+ messages in thread
From: Naeil ZOUEIDI @ 2016-11-06  8:55 UTC (permalink / raw)
  To: gregkh, bankarsandhya512, isdn, sudipm.mukherjee, arnd, ansonjacob.aj
  Cc: devel, linux-kernel, Naeil ZOUEIDI

Staging: i4l: act200:

Signed-off-by: Naeil Zoueidi <naeilzoueidi@ubuntu.com>
---
 drivers/staging/i4l/act2000/capi.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/i4l/act2000/capi.c b/drivers/staging/i4l/act2000/capi.c
index 62f5629..b494917 100644
--- a/drivers/staging/i4l/act2000/capi.c
+++ b/drivers/staging/i4l/act2000/capi.c
@@ -564,7 +564,8 @@ actcapi_data_b3_ind(act2000_card *card, struct sk_buff *skb) {
 	blocknr = msg->msg.data_b3_ind.blocknr;
 	skb_pull(skb, 19);
 	card->interface.rcvcallb_skb(card->myid, chan, skb);
-	if (!(skb = alloc_skb(11, GFP_ATOMIC))) {
+	skb = alloc_skb(11, GFP_ATOMIC;
+	if (!skb) {
 		printk(KERN_WARNING "actcapi: alloc_skb failed\n");
 		return 1;
 	}
-- 
2.10.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-11-06 12:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-11-06  8:55 [PATCH] This is a patch to the capi.c file that fixes one instance of the following error: ERROR: do not use assignment in if condition Naeil ZOUEIDI
2016-11-06  9:28 ` kbuild test robot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.