aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/core/device.c
diff options
context:
space:
mode:
authorKamal Heib <kamalheib1@gmail.com>2019-09-23 13:41:56 +0300
committerJason Gunthorpe <jgg@mellanox.com>2019-10-01 13:06:10 -0300
commitd0f3ef36bf49bbc7de04da0d7f65ef95749b8b30 (patch)
tree4d7e4fc9c3ca83c1a88cd22cd3a23fced4260bcc /drivers/infiniband/core/device.c
parentRDMA/siw: Fix port number endianness in a debug message (diff)
downloadlinux-dev-d0f3ef36bf49bbc7de04da0d7f65ef95749b8b30.tar.xz
linux-dev-d0f3ef36bf49bbc7de04da0d7f65ef95749b8b30.zip
RDMA/core: Fix return code when modify_device isn't supported
The proper return code is "-EOPNOTSUPP" when modify_device callback is not supported. Link: https://lore.kernel.org/r/20190923104158.5331-2-kamalheib1@gmail.com Signed-off-by: Kamal Heib <kamalheib1@gmail.com> Reviewed-by: Jason Gunthorpe <jgg@mellanox.com> Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
Diffstat (limited to '')
-rw-r--r--drivers/infiniband/core/device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/device.c b/drivers/infiniband/core/device.c
index 99c4a55545cf..a667636f74bf 100644
--- a/drivers/infiniband/core/device.c
+++ b/drivers/infiniband/core/device.c
@@ -2365,7 +2365,7 @@ int ib_modify_device(struct ib_device *device,
struct ib_device_modify *device_modify)
{
if (!device->ops.modify_device)
- return -ENOSYS;
+ return -EOPNOTSUPP;
return device->ops.modify_device(device, device_modify_mask,
device_modify);