diff options
author | Kamenee Arumugam <kamenee.arumugam@intel.com> | 2017-08-21 18:27:35 -0700 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2017-08-28 19:12:23 -0400 |
commit | d68e68e5fb7134427c6d79c58beaaf869543f3f7 (patch) | |
tree | f4a9bad3ce24c6573ceaebe2d0b8051ea29402f8 /drivers | |
parent | 32500f2763906602725006f1dc833c8ea28dfd07 (diff) |
IB/hfi1: Fix whitespace alignment issue for MAD
Fix a tab alignment issue present in pr_err_ratelimited
error message.
Reviewed-by: Michael J. Ruhl <michael.j.ruhl@intel.com>
Signed-off-by: Kamenee Arumugam <kamenee.arumugam@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/hw/hfi1/mad.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/hfi1/mad.c b/drivers/infiniband/hw/hfi1/mad.c index 4849130d49bc..f4c0ffc040cc 100644 --- a/drivers/infiniband/hw/hfi1/mad.c +++ b/drivers/infiniband/hw/hfi1/mad.c @@ -158,7 +158,7 @@ static struct trap_node *check_and_add_trap(struct hfi1_ibport *ibp, if (queue_id >= RVT_MAX_TRAP_LISTS) { trap_count++; pr_err_ratelimited("hfi1: Invalid trap 0x%0x dropped. Total dropped: %d\n", - trap->data.generic_type, trap_count); + trap->data.generic_type, trap_count); kfree(trap); return NULL; } |