aboutsummaryrefslogtreecommitdiffstats
path: root/include/rdma/uverbs_named_ioctl.h
diff options
context:
space:
mode:
authorLeon Romanovsky <leonro@mellanox.com>2018-12-06 12:19:05 +0200
committerJason Gunthorpe <jgg@mellanox.com>2018-12-06 21:11:06 -0700
commitc471de14eeacff6c095f81eb8901d55de7f7fb69 (patch)
treead1443d8d37f995a5c07d576981c0bf6e3de02bf /include/rdma/uverbs_named_ioctl.h
parentIB/mlx5: Enable TX on a DEVX flow table (diff)
downloadlinux-dev-c471de14eeacff6c095f81eb8901d55de7f7fb69.tar.xz
linux-dev-c471de14eeacff6c095f81eb8901d55de7f7fb69.zip
RDMA/uverbs: Fix typo in string concatenation macro
Update UVERBS_OBJECT() macro to properly concatenate the object name. Fixes: e502a864c352 ("IB/core: Introduce DECLARE_UVERBS_GLOBAL_METHODS") Signed-off-by: Leon Romanovsky <leonro@mellanox.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to 'include/rdma/uverbs_named_ioctl.h')
-rw-r--r--include/rdma/uverbs_named_ioctl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rdma/uverbs_named_ioctl.h b/include/rdma/uverbs_named_ioctl.h
index b586e7c41d4a..3447bfe356d6 100644
--- a/include/rdma/uverbs_named_ioctl.h
+++ b/include/rdma/uverbs_named_ioctl.h
@@ -43,7 +43,7 @@
#define _UVERBS_NAME(x, y) _UVERBS_PASTE(x, y)
#define UVERBS_METHOD(id) _UVERBS_NAME(UVERBS_MODULE_NAME, _method_##id)
#define UVERBS_HANDLER(id) _UVERBS_NAME(UVERBS_MODULE_NAME, _handler_##id)
-#define UVERBS_OBJECT(id) _UVERBS_NAME(UVERBS_MOUDLE_NAME, _object_##id)
+#define UVERBS_OBJECT(id) _UVERBS_NAME(UVERBS_MODULE_NAME, _object_##id)
/* These are static so they do not need to be qualified */
#define UVERBS_METHOD_ATTRS(method_id) _method_attrs_##method_id