Searched refs:max_hopid (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/drivers/thunderbolt/ |
D | switch.c | 745 int max_hopid) in tb_port_alloc_hopid() argument 765 if (max_hopid < 0 || max_hopid > port_max_hopid) in tb_port_alloc_hopid() 766 max_hopid = port_max_hopid; in tb_port_alloc_hopid() 768 return ida_simple_get(ida, min_hopid, max_hopid + 1, GFP_KERNEL); in tb_port_alloc_hopid() 780 int tb_port_alloc_in_hopid(struct tb_port *port, int min_hopid, int max_hopid) in tb_port_alloc_in_hopid() argument 782 return tb_port_alloc_hopid(port, true, min_hopid, max_hopid); in tb_port_alloc_in_hopid() 794 int tb_port_alloc_out_hopid(struct tb_port *port, int min_hopid, int max_hopid) in tb_port_alloc_out_hopid() argument 796 return tb_port_alloc_hopid(port, false, min_hopid, max_hopid); in tb_port_alloc_out_hopid()
|
D | tb.h | 1017 int tb_port_alloc_in_hopid(struct tb_port *port, int hopid, int max_hopid); 1019 int tb_port_alloc_out_hopid(struct tb_port *port, int hopid, int max_hopid);
|