aboutsummaryrefslogtreecommitdiff
path: root/net/core
diff options
context:
space:
mode:
authorGravatar Parav Pandit <parav@mellanox.com> 2019-08-30 05:39:44 -0500
committerGravatar David S. Miller <davem@davemloft.net> 2019-08-31 23:46:13 -0700
commitc7282b501f22a21ac8dfb6d3856aa1a92a7df5d5 (patch)
treececb6d66bbc96d379c9b72b231653c41edc07534 /net/core
parentMerge branch 'net-tls-add-socket-diag' (diff)
downloadlinux-c7282b501f22a21ac8dfb6d3856aa1a92a7df5d5.tar.gz
linux-c7282b501f22a21ac8dfb6d3856aa1a92a7df5d5.tar.bz2
linux-c7282b501f22a21ac8dfb6d3856aa1a92a7df5d5.zip
devlink: Make port index data type as unsigned int
Devlink port index attribute is returned to users as u32 through netlink response. Change index data type from 'unsigned' to 'unsigned int' to avoid below checkpatch.pl warning. WARNING: Prefer 'unsigned int' to bare use of 'unsigned' 81: FILE: include/net/devlink.h:81: + unsigned index; Acked-by: Jiri Pirko <jiri@mellanox.com> Signed-off-by: Parav Pandit <parav@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/devlink.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/core/devlink.c b/net/core/devlink.c
index 650f36379203..b7091329987a 100644
--- a/net/core/devlink.c
+++ b/net/core/devlink.c
@@ -136,7 +136,7 @@ static struct devlink *devlink_get_from_info(struct genl_info *info)
}
static struct devlink_port *devlink_port_get_by_index(struct devlink *devlink,
- int port_index)
+ unsigned int port_index)
{
struct devlink_port *devlink_port;
@@ -147,7 +147,8 @@ static struct devlink_port *devlink_port_get_by_index(struct devlink *devlink,
return NULL;
}
-static bool devlink_port_index_exists(struct devlink *devlink, int port_index)
+static bool devlink_port_index_exists(struct devlink *devlink,
+ unsigned int port_index)
{
return devlink_port_get_by_index(devlink, port_index);
}