thunderbolt: Introduce tb_port_is_nhi()
authorMika Westerberg <mika.westerberg@linux.intel.com>
Sat, 25 Jul 2020 07:32:46 +0000 (10:32 +0300)
committerMika Westerberg <mika.westerberg@linux.intel.com>
Thu, 3 Sep 2020 09:21:08 +0000 (12:21 +0300)
This is useful if one needs to check if adapter (port) is the host
interface (NHI). Make tb_port_alloc_hopid() take advantage of this.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/thunderbolt/switch.c
drivers/thunderbolt/tb.h

index d3c5402..9c00c28 100644 (file)
@@ -789,7 +789,7 @@ static int tb_port_alloc_hopid(struct tb_port *port, bool in, int min_hopid,
         * NHI can use HopIDs 1-max for other adapters HopIDs 0-7 are
         * reserved.
         */
-       if (port->config.type != TB_TYPE_NHI && min_hopid < TB_PATH_MIN_HOPID)
+       if (!tb_port_is_nhi(port) && min_hopid < TB_PATH_MIN_HOPID)
                min_hopid = TB_PATH_MIN_HOPID;
 
        if (max_hopid < 0 || max_hopid > port_max_hopid)
index a1d5de5..6aee18b 100644 (file)
@@ -464,6 +464,11 @@ static inline bool tb_port_is_null(const struct tb_port *port)
        return port && port->port && port->config.type == TB_TYPE_PORT;
 }
 
+static inline bool tb_port_is_nhi(const struct tb_port *port)
+{
+       return port && port->config.type == TB_TYPE_NHI;
+}
+
 static inline bool tb_port_is_pcie_down(const struct tb_port *port)
 {
        return port && port->config.type == TB_TYPE_PCIE_DOWN;