diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-03-17 15:54:23 +0100 |
---|---|---|
committer | Jason Gunthorpe <jgg@mellanox.com> | 2020-03-27 12:51:04 -0300 |
commit | a4da83c215ac4e69ef7ae9ec3ee9ef63a3edafdf (patch) | |
tree | abcd1ff57f219844c319a5f584a9daddd3d5793f /drivers/infiniband | |
parent | e0b0722643fc3bb7e2401a868cc28e65c31ce07d (diff) | |
download | linux-a4da83c215ac4e69ef7ae9ec3ee9ef63a3edafdf.tar.gz linux-a4da83c215ac4e69ef7ae9ec3ee9ef63a3edafdf.tar.bz2 linux-a4da83c215ac4e69ef7ae9ec3ee9ef63a3edafdf.zip |
IB/hfi1: Get rid of a warning
The right markup for a variable is @foo, and not @foo[].
Using a wrong markup caused this warning:
./drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h:243: WARNING: Inline strong start-string without end-string.
Link: https://lore.kernel.org/r/9dce702510505556d75a13d9641e09218a4b4a65.1584456635.git.mchehab+huawei@kernel.org
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h b/drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h index 0b3570dc606d..d324312a373c 100644 --- a/drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h +++ b/drivers/infiniband/ulp/opa_vnic/opa_vnic_encap.h @@ -239,7 +239,7 @@ struct opa_veswport_mactable_entry { * @offset: mac table starting offset * @num_entries: Number of entries to get or set * @mac_tbl_digest: mac table digest - * @tbl_entries[]: Array of table entries + * @tbl_entries: Array of table entries * * The EM sends down this structure in a MAD indicating * the starting offset in the forwarding table that this |