mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 16:14:13 +08:00
devlink: Fix port_type_set function pointer check
Fix a typo when checking existence of port_type_set function pointer.
Fixes: 82564f6c70
("devlink: Simplify devlink port API calls")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Leon Romanovsky <leonro@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e08d6d42b6
commit
2a2b6e3640
@ -1274,7 +1274,7 @@ static int devlink_port_type_set(struct devlink_port *devlink_port,
|
||||
{
|
||||
int err;
|
||||
|
||||
if (devlink_port->devlink->ops->port_type_set)
|
||||
if (!devlink_port->devlink->ops->port_type_set)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
if (port_type == devlink_port->type)
|
||||
|
Loading…
Reference in New Issue
Block a user