RDMA/cxgb4: use WARN
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sat, 3 Nov 2012 10:58:27 +0000 (10:58 +0000)
committerRoland Dreier <roland@purestorage.com>
Mon, 26 Nov 2012 19:07:18 +0000 (11:07 -0800)
commit76f267b7ad978fec755f74ada4020edcb7493657
tree125a7b5745393abf4ff72dbb2d69e1156e380e3e
parentf4a75d2eb7b1e2206094b901be09adb31ba63681
RDMA/cxgb4: use WARN

Use WARN rather than printk followed by WARN_ON(1), for conciseness.

A simplified version of the semantic patch that makes this transformation
is as follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
expression list es;
@@

-printk(
+WARN(1,
  es);
-WARN_ON(1);
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
drivers/infiniband/hw/cxgb4/cm.c