Home
last modified time | relevance | path

Searched defs:port (Results 1 – 25 of 1474) sorted by relevance

12345678910>>...59

/linux/drivers/tty/serial/
H A D21285.c51 static bool is_enabled(struct uart_port *port, int bit) in is_enabled()
60 static void enable(struct uart_port *port, int bit) in enable()
67 static void disable(struct uart_port *port, int bit) in disable()
74 #define is_tx_enabled(port) is_enabled(port, tx_enabled_bit) argument
75 #define tx_enable(port) enable(port, tx_enabled_bit) argument
76 #define tx_disable(port) disable(port, tx_enabled_bit) argument
78 #define is_rx_enabled(port) is_enabled(port, rx_enabled_bit) argument
79 #define rx_enable(port) enable(port, rx_enabled_bit) argument
80 #define rx_disable(port) disable(port, rx_enabled_bit) argument
93 static void serial21285_stop_tx(struct uart_port *port) in serial21285_stop_tx()
[all …]
H A Daltera_jtaguart.c51 static unsigned int altera_jtaguart_tx_space(struct uart_port *port, u32 *ctlp) in altera_jtaguart_tx_space()
61 static unsigned int altera_jtaguart_tx_empty(struct uart_port *port) in altera_jtaguart_tx_empty()
66 static unsigned int altera_jtaguart_get_mctrl(struct uart_port *port) in altera_jtaguart_get_mctrl()
71 static void altera_jtaguart_set_mctrl(struct uart_port *port, unsigned int sigs) in altera_jtaguart_set_mctrl()
75 static void altera_jtaguart_start_tx(struct uart_port *port) in altera_jtaguart_start_tx()
82 static void altera_jtaguart_stop_tx(struct uart_port *port) in altera_jtaguart_stop_tx()
89 static void altera_jtaguart_stop_rx(struct uart_port *port) in altera_jtaguart_stop_rx()
96 static void altera_jtaguart_break_ctl(struct uart_port *port, int break_state) in altera_jtaguart_break_ctl()
100 static void altera_jtaguart_set_termios(struct uart_port *port, in altera_jtaguart_set_termios()
109 static void altera_jtaguart_rx_chars(struct uart_port *port) in altera_jtaguart_rx_chars()
[all …]
H A Dliteuart.c46 struct uart_port port; member
51 #define to_liteuart_port(port) container_of(port, struct liteuart_port, port) argument
71 static void liteuart_update_irq_reg(struct uart_port *port, bool set, u8 mask) in liteuart_update_irq_reg()
84 static void liteuart_stop_tx(struct uart_port *port) in liteuart_stop_tx()
89 static void liteuart_start_tx(struct uart_port *port) in liteuart_start_tx()
94 static void liteuart_stop_rx(struct uart_port *port) in liteuart_stop_rx()
102 static void liteuart_rx_chars(struct uart_port *port) in liteuart_rx_chars()
122 static void liteuart_tx_chars(struct uart_port *port) in liteuart_tx_chars()
134 struct uart_port *port = &uart->port; in liteuart_interrupt() local
156 struct uart_port *port = &uart->port; in liteuart_timer() local
[all …]
H A Dst-asc.c36 struct uart_port port; member
146 static inline struct asc_port *to_asc_port(struct uart_port *port) in to_asc_port()
151 static inline u32 asc_in(struct uart_port *port, u32 offset) in asc_in()
160 static inline void asc_out(struct uart_port *port, u32 offset, u32 value) in asc_out()
173 static inline void asc_disable_tx_interrupts(struct uart_port *port) in asc_disable_tx_interrupts()
180 static inline void asc_enable_tx_interrupts(struct uart_port *port) in asc_enable_tx_interrupts()
186 static inline void asc_disable_rx_interrupts(struct uart_port *port) in asc_disable_rx_interrupts()
193 static inline void asc_enable_rx_interrupts(struct uart_port *port) in asc_enable_rx_interrupts()
199 static inline u32 asc_txfifo_is_empty(struct uart_port *port) in asc_txfifo_is_empty()
204 static inline u32 asc_txfifo_is_half_empty(struct uart_port *port) in asc_txfifo_is_half_empty()
[all …]
H A Dsunhv.c42 static void transmit_chars_putchar(struct uart_port *port, in transmit_chars_putchar()
57 static void transmit_chars_write(struct uart_port *port, struct tty_port *tport) in transmit_chars_write()
74 static int receive_chars_getchar(struct uart_port *port) in receive_chars_getchar()
117 static int receive_chars_read(struct uart_port *port) in receive_chars_read()
189 static struct tty_port *receive_chars(struct uart_port *port) in receive_chars()
202 static void transmit_chars(struct uart_port *port) in transmit_chars()
221 struct uart_port *port = dev_id; in sunhv_interrupt() local
237 static unsigned int sunhv_tx_empty(struct uart_port *port) in sunhv_tx_empty()
247 static void sunhv_set_mctrl(struct uart_port *port, unsigned int mctrl) in sunhv_set_mctrl()
253 static unsigned int sunhv_get_mctrl(struct uart_port *port) in sunhv_get_mctrl()
[all …]
H A Daltera_uart.c77 struct uart_port port; member
83 static u32 altera_uart_readl(struct uart_port *port, int reg) in altera_uart_readl()
88 static void altera_uart_writel(struct uart_port *port, u32 dat, int reg) in altera_uart_writel()
93 static unsigned int altera_uart_tx_empty(struct uart_port *port) in altera_uart_tx_empty()
99 static unsigned int altera_uart_get_mctrl(struct uart_port *port) in altera_uart_get_mctrl()
125 static void altera_uart_set_mctrl(struct uart_port *port, unsigned int sigs) in altera_uart_set_mctrl()
137 static void altera_uart_start_tx(struct uart_port *port) in altera_uart_start_tx()
145 static void altera_uart_stop_tx(struct uart_port *port) in altera_uart_stop_tx()
153 static void altera_uart_stop_rx(struct uart_port *port) in altera_uart_stop_rx()
161 static void altera_uart_break_ctl(struct uart_port *port, int break_state) in altera_uart_break_ctl()
[all …]
H A Dtimbuart.c25 struct uart_port port; member
39 static void timbuart_stop_rx(struct uart_port *port) in timbuart_stop_rx()
46 static void timbuart_stop_tx(struct uart_port *port) in timbuart_stop_tx()
53 static void timbuart_start_tx(struct uart_port *port) in timbuart_start_tx()
62 static unsigned int timbuart_tx_empty(struct uart_port *port) in timbuart_tx_empty()
69 static void timbuart_flush_buffer(struct uart_port *port) in timbuart_flush_buffer()
80 static void timbuart_rx_chars(struct uart_port *port) in timbuart_rx_chars()
96 static void timbuart_tx_chars(struct uart_port *port) in timbuart_tx_chars()
113 static void timbuart_handle_tx_port(struct uart_port *port, u32 isr, u32 *ier) in timbuart_handle_tx_port()
147 static void timbuart_handle_rx_port(struct uart_port *port, u32 isr, u32 *ier) in timbuart_handle_rx_port()
[all …]
H A Dmcf.c53 struct uart_port port; member
60 static unsigned int mcf_tx_empty(struct uart_port *port) in mcf_tx_empty()
68 static unsigned int mcf_get_mctrl(struct uart_port *port) in mcf_get_mctrl()
84 static void mcf_set_mctrl(struct uart_port *port, unsigned int sigs) in mcf_set_mctrl()
98 static void mcf_start_tx(struct uart_port *port) in mcf_start_tx()
114 static void mcf_stop_tx(struct uart_port *port) in mcf_stop_tx()
124 static void mcf_stop_rx(struct uart_port *port) in mcf_stop_rx()
134 static void mcf_break_ctl(struct uart_port *port, int break_state) in mcf_break_ctl()
148 static int mcf_startup(struct uart_port *port) in mcf_startup()
174 static void mcf_shutdown(struct uart_port *port) in mcf_shutdown()
[all …]
H A Duartlite.c118 static inline u32 uart_in32(u32 offset, struct uart_port *port) in uart_in32()
125 static inline void uart_out32(u32 val, u32 offset, struct uart_port *port) in uart_out32()
140 static int ulite_receive(struct uart_port *port, int stat) in ulite_receive()
190 static int ulite_transmit(struct uart_port *port, int stat) in ulite_transmit()
222 struct uart_port *port = dev_id; in ulite_isr() local
244 static unsigned int ulite_tx_empty(struct uart_port *port) in ulite_tx_empty()
256 static unsigned int ulite_get_mctrl(struct uart_port *port) in ulite_get_mctrl()
261 static void ulite_set_mctrl(struct uart_port *port, unsigned int mctrl) in ulite_set_mctrl()
266 static void ulite_stop_tx(struct uart_port *port) in ulite_stop_tx()
271 static void ulite_start_tx(struct uart_port *port) in ulite_start_tx()
[all …]
H A Dmux.c47 struct uart_port port; member
104 static unsigned int mux_tx_empty(struct uart_port *port) in mux_tx_empty()
117 static void mux_set_mctrl(struct uart_port *port, unsigned int mctrl) in mux_set_mctrl()
128 static unsigned int mux_get_mctrl(struct uart_port *port) in mux_get_mctrl()
139 static void mux_stop_tx(struct uart_port *port) in mux_stop_tx()
149 static void mux_start_tx(struct uart_port *port) in mux_start_tx()
159 static void mux_stop_rx(struct uart_port *port) in mux_stop_rx()
170 static void mux_break_ctl(struct uart_port *port, int break_state) in mux_break_ctl()
174 static void mux_tx_done(struct uart_port *port) in mux_tx_done()
188 static void mux_write(struct uart_port *port) in mux_write()
[all …]
H A Ddigicolor-usart.c77 struct uart_port port; member
83 static bool digicolor_uart_tx_full(struct uart_port *port) in digicolor_uart_tx_full()
89 static bool digicolor_uart_rx_empty(struct uart_port *port) in digicolor_uart_rx_empty()
95 static void digicolor_uart_stop_tx(struct uart_port *port) in digicolor_uart_stop_tx()
103 static void digicolor_uart_start_tx(struct uart_port *port) in digicolor_uart_start_tx()
111 static void digicolor_uart_stop_rx(struct uart_port *port) in digicolor_uart_stop_rx()
132 static void digicolor_uart_rx(struct uart_port *port) in digicolor_uart_rx()
180 static void digicolor_uart_tx(struct uart_port *port) in digicolor_uart_tx()
219 struct uart_port *port = dev_id; in digicolor_uart_int() local
233 static unsigned int digicolor_uart_tx_empty(struct uart_port *port) in digicolor_uart_tx_empty()
[all …]
H A Dmps2-uart.c71 struct uart_port port; member
78 static inline struct mps2_uart_port *to_mps2_port(struct uart_port *port) in to_mps2_port()
83 static void mps2_uart_write8(struct uart_port *port, u8 val, unsigned int off) in mps2_uart_write8()
90 static u8 mps2_uart_read8(struct uart_port *port, unsigned int off) in mps2_uart_read8()
97 static void mps2_uart_write32(struct uart_port *port, u32 val, unsigned int off) in mps2_uart_write32()
104 static unsigned int mps2_uart_tx_empty(struct uart_port *port) in mps2_uart_tx_empty()
111 static void mps2_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) in mps2_uart_set_mctrl()
115 static unsigned int mps2_uart_get_mctrl(struct uart_port *port) in mps2_uart_get_mctrl()
120 static void mps2_uart_stop_tx(struct uart_port *port) in mps2_uart_stop_tx()
129 static void mps2_uart_tx_chars(struct uart_port *port) in mps2_uart_tx_chars()
[all …]
H A Dvt8500_serial.c111 static inline void vt8500_write(struct uart_port *port, unsigned int val, in vt8500_write()
117 static inline unsigned int vt8500_read(struct uart_port *port, unsigned int off) in vt8500_read()
122 static void vt8500_stop_tx(struct uart_port *port) in vt8500_stop_tx()
132 static void vt8500_stop_rx(struct uart_port *port) in vt8500_stop_rx()
142 static void vt8500_enable_ms(struct uart_port *port) in vt8500_enable_ms()
152 static void handle_rx(struct uart_port *port) in handle_rx()
190 static unsigned int vt8500_tx_empty(struct uart_port *port) in vt8500_tx_empty()
197 static void handle_tx(struct uart_port *port) in handle_tx()
206 static void vt8500_start_tx(struct uart_port *port) in vt8500_start_tx()
219 static void handle_delta_cts(struct uart_port *port) in handle_delta_cts()
[all …]
H A Dmeson_uart.c89 static void meson_uart_set_mctrl(struct uart_port *port, unsigned int mctrl) in meson_uart_set_mctrl()
93 static unsigned int meson_uart_get_mctrl(struct uart_port *port) in meson_uart_get_mctrl()
98 static unsigned int meson_uart_tx_empty(struct uart_port *port) in meson_uart_tx_empty()
107 static void meson_uart_stop_tx(struct uart_port *port) in meson_uart_stop_tx()
116 static void meson_uart_stop_rx(struct uart_port *port) in meson_uart_stop_rx()
125 static void meson_uart_shutdown(struct uart_port *port) in meson_uart_shutdown()
142 static void meson_uart_start_tx(struct uart_port *port) in meson_uart_start_tx()
177 static void meson_receive_chars(struct uart_port *port) in meson_receive_chars()
237 struct uart_port *port = (struct uart_port *)dev_id; in meson_uart_interrupt() local
254 static const char *meson_uart_type(struct uart_port *port) in meson_uart_type()
[all …]
H A Dsunplus-uart.c75 struct uart_port port; member
80 static void sp_uart_put_char(struct uart_port *port, unsigned int ch) in sp_uart_put_char()
85 static u32 sunplus_tx_buf_not_full(struct uart_port *port) in sunplus_tx_buf_not_full()
92 static unsigned int sunplus_tx_empty(struct uart_port *port) in sunplus_tx_empty()
99 static void sunplus_set_mctrl(struct uart_port *port, unsigned int mctrl) in sunplus_set_mctrl()
131 static unsigned int sunplus_get_mctrl(struct uart_port *port) in sunplus_get_mctrl()
155 static void sunplus_stop_tx(struct uart_port *port) in sunplus_stop_tx()
164 static void sunplus_start_tx(struct uart_port *port) in sunplus_start_tx()
173 static void sunplus_stop_rx(struct uart_port *port) in sunplus_stop_rx()
182 static void sunplus_break_ctl(struct uart_port *port, int ctl) in sunplus_break_ctl()
[all …]
H A Dapbuart.h46 #define APBBASE(port) ((struct grlib_apbuart_regs_map *)((port)->membase)) argument
48 #define APBBASE_DATA_P(port) (&(APBBASE(port)->data)) argument
49 #define APBBASE_STATUS_P(port) (&(APBBASE(port)->status)) argument
50 #define APBBASE_CTRL_P(port) (&(APBBASE(port)->ctrl)) argument
51 #define APBBASE_SCALAR_P(port) (&(APBBASE(port)->scaler)) argument
53 #define UART_GET_CHAR(port) (__raw_readl(APBBASE_DATA_P(port))) argument
54 #define UART_PUT_CHAR(port, v) (__raw_writel(v, APBBASE_DATA_P(port))) argument
55 #define UART_GET_STATUS(port) (__raw_readl(APBBASE_STATUS_P(port))) argument
56 #define UART_PUT_STATUS(port, v)(__raw_writel(v, APBBASE_STATUS_P(port))) argument
57 #define UART_GET_CTRL(port) (__raw_readl(APBBASE_CTRL_P(port))) argument
[all …]
/linux/drivers/mmc/core/
H A Dsdio_uart.c65 struct tty_port port; member
87 static int sdio_uart_add_port(struct sdio_uart_port *port) in sdio_uart_add_port()
112 struct sdio_uart_port *port; in sdio_uart_port_get() local
126 static void sdio_uart_port_put(struct sdio_uart_port *port) in sdio_uart_port_put()
131 static void sdio_uart_port_remove(struct sdio_uart_port *port) in sdio_uart_port_remove()
162 static int sdio_uart_claim_func(struct sdio_uart_port *port) in sdio_uart_claim_func()
175 static inline void sdio_uart_release_func(struct sdio_uart_port *port) in sdio_uart_release_func()
181 static inline u8 sdio_in(struct sdio_uart_port *port, int offset) in sdio_in()
186 static inline void sdio_out(struct sdio_uart_port *port, int offset, int value) in sdio_out()
191 static unsigned int sdio_uart_get_mctrl(struct sdio_uart_port *port) in sdio_uart_get_mctrl()
[all …]
/linux/drivers/net/bonding/
H A Dbond_3ad.c129 static inline struct bonding *__get_bond_by_port(struct port *port) in __get_bond_by_port()
145 static inline struct aggregator *__get_first_agg(struct port *port) in __get_first_agg()
182 static void __disable_distributing_port(struct port *port) in __disable_distributing_port()
194 static void __enable_collecting_port(struct port *port) in __enable_collecting_port()
208 static inline void __disable_port(struct port *port) in __disable_port()
219 static inline void __enable_port(struct port *port) in __enable_port()
232 static bool __port_move_to_attached_state(struct port *port) in __port_move_to_attached_state()
248 static int __port_is_collecting_distributing(struct port *port) in __port_is_collecting_distributing()
259 static inline u32 __get_agg_selection_mode(struct port *port) in __get_agg_selection_mode()
273 static inline int __check_agg_selection_timer(struct port *port) in __check_agg_selection_timer()
[all …]
/linux/drivers/net/wan/
H A Dixp4xx_hss.c258 struct port { struct
259 struct device *dev;
260 struct npe *npe;
261 unsigned int txreadyq;
262 unsigned int rxtrigq;
263 unsigned int rxfreeq;
287 u8 cmd, unused, hss_port, index; argument
325 #define rx_desc_phys(port, n) ((port)->desc_tab_phys + \ argument
327 #define rx_desc_ptr(port, n) (&(port)->desc_tab[n]) argument
329 #define tx_desc_phys(port, n) ((port)->desc_tab_phys + \ argument
[all …]
/linux/drivers/net/ethernet/marvell/prestera/
H A Dprestera_main.c50 int prestera_port_learning_set(struct prestera_port *port, bool learn) in prestera_port_learning_set()
55 int prestera_port_uc_flood_set(struct prestera_port *port, bool flood) in prestera_port_uc_flood_set()
60 int prestera_port_mc_flood_set(struct prestera_port *port, bool flood) in prestera_port_mc_flood_set()
65 int prestera_port_br_locked_set(struct prestera_port *port, bool br_locked) in prestera_port_br_locked_set()
70 int prestera_port_pvid_set(struct prestera_port *port, u16 vid) in prestera_port_pvid_set()
96 struct prestera_port *port = NULL, *tmp; in prestera_port_find_by_hwid() local
112 struct prestera_port *port = NULL, *tmp; in prestera_find_port() local
128 struct prestera_port *port; in prestera_switch_get() local
134 int prestera_port_cfg_mac_read(struct prestera_port *port, in prestera_port_cfg_mac_read()
141 int prestera_port_cfg_mac_write(struct prestera_port *port, in prestera_port_cfg_mac_write()
[all …]
/linux/arch/m68k/include/asm/
H A Dio_mm.h201 #define isa_inb(port) in_8(isa_itb(port)) argument
202 #define isa_inw(port) (ISA_SEX ? in_be16(isa_itw(port)) : in_le16(isa_itw(port))) argument
203 #define isa_inl(port) (ISA_SEX ? in_be32(isa_itl(port)) : in_le32(isa_itl(port))) argument
204 #define isa_outb(val,port) out_8(isa_itb(port),(val)) argument
205 #define isa_outw(val,port) (ISA_SEX ? out_be16(isa_itw(port),(val)) : out_le16(isa_itw(port),(val))) argument
206 #define isa_outl(val,port) (ISA_SEX ? out_be32(isa_itl(port),(val)) : out_le32(isa_itl(port),(val))) argument
218 #define isa_rom_inb(port) rom_in_8(isa_itb(port)) argument
219 #define isa_rom_inw(port) \ argument
223 #define isa_rom_outb(val, port) rom_out_8(isa_itb(port), (val)) argument
224 #define isa_rom_outw(val, port) \ argument
[all …]
/linux/drivers/tty/serial/jsm/
H A Djsm_tty.c55 static unsigned int jsm_tty_tx_empty(struct uart_port *port) in jsm_tty_tx_empty()
63 static unsigned int jsm_tty_get_mctrl(struct uart_port *port) in jsm_tty_get_mctrl()
86 static void jsm_tty_set_mctrl(struct uart_port *port, unsigned int mctrl) in jsm_tty_set_mctrl()
115 static void jsm_tty_write(struct uart_port *port) in jsm_tty_write()
123 static void jsm_tty_start_tx(struct uart_port *port) in jsm_tty_start_tx()
136 static void jsm_tty_stop_tx(struct uart_port *port) in jsm_tty_stop_tx()
148 static void jsm_tty_send_xchar(struct uart_port *port, char ch) in jsm_tty_send_xchar()
165 static void jsm_tty_stop_rx(struct uart_port *port) in jsm_tty_stop_rx()
173 static void jsm_tty_break(struct uart_port *port, int break_state) in jsm_tty_break()
188 static int jsm_tty_open(struct uart_port *port) in jsm_tty_open()
[all …]
/linux/drivers/net/ethernet/ti/
H A Dam65-cpsw-qos.c42 static void am65_cpsw_tx_pn_shaper_reset(struct am65_cpsw_port *port) in am65_cpsw_tx_pn_shaper_reset()
52 static void am65_cpsw_tx_pn_shaper_apply(struct am65_cpsw_port *port) in am65_cpsw_tx_pn_shaper_apply()
103 static int am65_cpsw_mqprio_verify_shaper(struct am65_cpsw_port *port, in am65_cpsw_mqprio_verify_shaper()
188 struct am65_cpsw_port *port = am65_ndev_to_port(ndev); in am65_cpsw_reset_tc_mqprio() local
205 struct am65_cpsw_port *port = am65_ndev_to_port(ndev); in am65_cpsw_setup_mqprio() local
271 static int am65_cpsw_iet_set_verify_timeout_count(struct am65_cpsw_port *port) in am65_cpsw_iet_set_verify_timeout_count()
315 static int am65_cpsw_iet_verify_wait(struct am65_cpsw_port *port) in am65_cpsw_iet_verify_wait()
362 static void am65_cpsw_iet_set_preempt_mask(struct am65_cpsw_port *port, u8 preemptible_tcs) in am65_cpsw_iet_set_preempt_mask()
377 struct am65_cpsw_port *port; in am65_cpsw_iet_common_enable() local
405 void am65_cpsw_iet_commit_preemptible_tcs(struct am65_cpsw_port *port) in am65_cpsw_iet_commit_preemptible_tcs()
[all …]
/linux/drivers/net/team/
H A Dteam_core.c42 struct team_port *port = rtnl_dereference(dev->rx_handler_data); in team_port_get_rtnl() local
61 static int team_port_set_orig_dev_addr(struct team_port *port) in team_port_set_orig_dev_addr()
67 struct team_port *port) in team_port_set_team_dev_addr()
72 int team_modeop_port_enter(struct team *team, struct team_port *port) in team_modeop_port_enter()
79 struct team_port *port) in team_modeop_port_change_dev_addr()
85 static void team_lower_state_changed(struct team_port *port) in team_lower_state_changed()
94 static void team_refresh_port_linkup(struct team_port *port) in team_refresh_port_linkup()
149 struct team_port *port) in __team_option_inst_add()
207 struct team_port *port) in __team_option_inst_del_port()
219 struct team_port *port) in __team_option_inst_add_port()
[all …]
/linux/drivers/scsi/bfa/
H A Dbfa_fcs_lport.c121 struct bfa_fcs_lport_s *port, in bfa_fcs_lport_sm_uninit()
138 bfa_fcs_lport_sm_init(struct bfa_fcs_lport_s *port, in bfa_fcs_lport_sm_init()
173 struct bfa_fcs_lport_s *port, in bfa_fcs_lport_sm_online()
233 struct bfa_fcs_lport_s *port, in bfa_fcs_lport_sm_offline()
288 bfa_fcs_lport_sm_stopping(struct bfa_fcs_lport_s *port, in bfa_fcs_lport_sm_stopping()
313 struct bfa_fcs_lport_s *port, in bfa_fcs_lport_sm_deleting()
340 bfa_fcs_lport_aen_post(struct bfa_fcs_lport_s *port, in bfa_fcs_lport_aen_post()
365 bfa_fcs_lport_send_ls_rjt(struct bfa_fcs_lport_s *port, struct fchs_s *rx_fchs, in bfa_fcs_lport_send_ls_rjt()
393 bfa_fcs_lport_send_fcgs_rjt(struct bfa_fcs_lport_s *port, in bfa_fcs_lport_send_fcgs_rjt()
427 bfa_fcs_lport_plogi(struct bfa_fcs_lport_s *port, in bfa_fcs_lport_plogi()
[all …]

12345678910>>...59