diff options
author | Mika Westerberg <mika.westerberg@linux.intel.com> | 2022-08-30 11:12:40 +0200 |
---|---|---|
committer | Mika Westerberg <mika.westerberg@linux.intel.com> | 2022-09-05 08:02:16 +0200 |
commit | 3846d011403b57190b6b3e917cc8b3ab810fa293 (patch) | |
tree | bb2e1d46db6ef392faef5dc10d7644052f072ebe /drivers/thunderbolt/tb.h | |
parent | thunderbolt: Move port CL state functions into correct place in switch.c (diff) | |
download | linux-3846d011403b57190b6b3e917cc8b3ab810fa293.tar.xz linux-3846d011403b57190b6b3e917cc8b3ab810fa293.zip |
thunderbolt: Pass CL state bitmask to tb_port_clx_supported()
Instead of testing just a single CL state we can pass a bitmask of
states to check. This makes it simpler for callers of the function.
We also add a check for CL2 even though not fully supported by the
driver yet.
Suggested-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Diffstat (limited to 'drivers/thunderbolt/tb.h')
-rw-r--r-- | drivers/thunderbolt/tb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/thunderbolt/tb.h b/drivers/thunderbolt/tb.h index 8291cabd2e92..8555ad9d7234 100644 --- a/drivers/thunderbolt/tb.h +++ b/drivers/thunderbolt/tb.h @@ -113,8 +113,8 @@ struct tb_switch_tmu { enum tb_clx { TB_CLX_DISABLE, /* CL0s and CL1 are enabled and supported together */ - TB_CL1, - TB_CL2, + TB_CL1 = BIT(0), + TB_CL2 = BIT(1), }; /** |