diff options
author | Roland Dreier <rolandd@cisco.com> | 2008-07-15 02:48:47 -0400 |
---|---|---|
committer | Roland Dreier <rolandd@cisco.com> | 2008-07-15 02:48:47 -0400 |
commit | 468f2239bcc71ae0f345c3fe58c797cf4627daf4 (patch) | |
tree | fc617ac292402787196c47e55ce8c3dc3da032e8 /drivers/infiniband/core | |
parent | eec8845d29504a12fbd434e192d61aed3d9d74fa (diff) |
RDMA/cma: Add missing newlines to printk()s
Signed-off-by: Roland Dreier <rolandd@cisco.com>
Acked-by: Sean Hefty <sean.hefty@intel.com>
Diffstat (limited to 'drivers/infiniband/core')
-rw-r--r-- | drivers/infiniband/core/cma.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index e5bd6172a1f6..44d190f67810 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c | |||
@@ -974,7 +974,7 @@ static int cma_ib_handler(struct ib_cm_id *cm_id, struct ib_cm_event *ib_event) | |||
974 | event.param.conn.private_data_len = IB_CM_REJ_PRIVATE_DATA_SIZE; | 974 | event.param.conn.private_data_len = IB_CM_REJ_PRIVATE_DATA_SIZE; |
975 | break; | 975 | break; |
976 | default: | 976 | default: |
977 | printk(KERN_ERR "RDMA CMA: unexpected IB CM event: %d", | 977 | printk(KERN_ERR "RDMA CMA: unexpected IB CM event: %d\n", |
978 | ib_event->event); | 978 | ib_event->event); |
979 | goto out; | 979 | goto out; |
980 | } | 980 | } |
@@ -1450,7 +1450,7 @@ static void cma_listen_on_dev(struct rdma_id_private *id_priv, | |||
1450 | ret = rdma_listen(id, id_priv->backlog); | 1450 | ret = rdma_listen(id, id_priv->backlog); |
1451 | if (ret) | 1451 | if (ret) |
1452 | printk(KERN_WARNING "RDMA CMA: cma_listen_on_dev, error %d, " | 1452 | printk(KERN_WARNING "RDMA CMA: cma_listen_on_dev, error %d, " |
1453 | "listening on device %s", ret, cma_dev->device->name); | 1453 | "listening on device %s\n", ret, cma_dev->device->name); |
1454 | } | 1454 | } |
1455 | 1455 | ||
1456 | static void cma_listen_on_all(struct rdma_id_private *id_priv) | 1456 | static void cma_listen_on_all(struct rdma_id_private *id_priv) |
@@ -2155,7 +2155,7 @@ static int cma_sidr_rep_handler(struct ib_cm_id *cm_id, | |||
2155 | event.status = 0; | 2155 | event.status = 0; |
2156 | break; | 2156 | break; |
2157 | default: | 2157 | default: |
2158 | printk(KERN_ERR "RDMA CMA: unexpected IB CM event: %d", | 2158 | printk(KERN_ERR "RDMA CMA: unexpected IB CM event: %d\n", |
2159 | ib_event->event); | 2159 | ib_event->event); |
2160 | goto out; | 2160 | goto out; |
2161 | } | 2161 | } |