diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2020-11-17 11:19:41 +0100 |
---|---|---|
committer | Mika Westerberg <mika.westerberg@linux.intel.com> | 2020-11-30 12:39:24 +0100 |
commit | 463e48fa544826898791085508459de246fc4c09 (patch) | |
tree | c3818692ad04786743c9ba0185515226c2e9d11e /drivers/thunderbolt/ctl.c | |
parent | thunderbolt: Keep the parent runtime resumed for a while on device disconnect (diff) | |
download | linux-463e48fa544826898791085508459de246fc4c09.tar.xz linux-463e48fa544826898791085508459de246fc4c09.zip |
thunderbolt: Return -ENOTCONN when ERR_CONN is received
This allows the calling code to distinguish if the error was due to
ERR_CONN (adapter is disconneced or disabled) or something else. Will be
needed in USB4 router NVM update in the following patch.
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt/ctl.c')
-rw-r--r-- | drivers/thunderbolt/ctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/thunderbolt/ctl.c b/drivers/thunderbolt/ctl.c index 1d86e27a0ef3..bac08b820015 100644 --- a/drivers/thunderbolt/ctl.c +++ b/drivers/thunderbolt/ctl.c @@ -962,6 +962,9 @@ static int tb_cfg_get_error(struct tb_ctl *ctl, enum tb_cfg_space space, if (res->tb_error == TB_CFG_ERROR_LOCK) return -EACCES; + else if (res->tb_error == TB_CFG_ERROR_PORT_NOT_CONNECTED) + return -ENOTCONN; + return -EIO; } |