min_hopid         678 drivers/thunderbolt/switch.c static int tb_port_alloc_hopid(struct tb_port *port, bool in, int min_hopid,
min_hopid         693 drivers/thunderbolt/switch.c 	if (min_hopid < TB_PATH_MIN_HOPID)
min_hopid         694 drivers/thunderbolt/switch.c 		min_hopid = TB_PATH_MIN_HOPID;
min_hopid         699 drivers/thunderbolt/switch.c 	return ida_simple_get(ida, min_hopid, max_hopid + 1, GFP_KERNEL);
min_hopid         711 drivers/thunderbolt/switch.c int tb_port_alloc_in_hopid(struct tb_port *port, int min_hopid, int max_hopid)
min_hopid         713 drivers/thunderbolt/switch.c 	return tb_port_alloc_hopid(port, true, min_hopid, max_hopid);
min_hopid         725 drivers/thunderbolt/switch.c int tb_port_alloc_out_hopid(struct tb_port *port, int min_hopid, int max_hopid)
min_hopid         727 drivers/thunderbolt/switch.c 	return tb_port_alloc_hopid(port, false, min_hopid, max_hopid);