/linux/drivers/tty/serial/ |
H A D | lantiq.c | 233 lqasc_tx_int(int irq, void *_port) in lqasc_tx_int() argument 236 struct uart_port *port = (struct uart_port *)_port; in lqasc_tx_int() 247 lqasc_err_int(int irq, void *_port) in lqasc_err_int() argument 250 struct uart_port *port = (struct uart_port *)_port; in lqasc_err_int() 263 lqasc_rx_int(int irq, void *_port) in lqasc_rx_int() argument 266 struct uart_port *port = (struct uart_port *)_port; in lqasc_rx_int()
|
H A D | sh-sci.c | 95 #define min_sr(_port) ffs((_port)->sampling_rate_mask) argument 96 #define max_sr(_port) fls((_port)->sampling_rate_mask) argument 99 #define for_each_sr(_sr, _port) \ argument 100 for ((_sr) = max_sr(_port); (_sr) >= min_sr(_port); (_sr)--) \ 101 if ((_port)->sampling_rate_mask & SCI_SR((_sr)))
|
/linux/drivers/phy/tegra/ |
H A D | xusb-tegra210.c | 275 #define UTMIP(_port, _offset1, _offset2) \ argument 276 (((_port) <= 2) ? (_offset1) : (_offset2)) 286 #define UTMIP_WAKE_VAL(_port, _value) (((_value) & 0xf) << \ argument 287 (UTMIP(_port, 8 * (_port) + 4, 4))) 288 #define UTMIP_WAKE_VAL_NONE(_port) UTMIP_WAKE_VAL(_port, 12) argument 289 #define UTMIP_WAKE_VAL_ANY(_port) UTMIP_WAKE_VAL(_port, 15) argument 326 #define SPEED(_port, _value) (((_value) & 0x3) << \ argument 327 (UTMIP(_port, 8 * (_port), 8))) 328 #define UTMI_HS(_port) SPEED(_port, 0) argument 329 #define UTMI_FS(_port) SPEED(_port, 1) argument [all …]
|
/linux/drivers/net/dsa/qca/ |
H A D | ar9331.c | 75 #define AR9331_SW_REG_PORT_STATUS(_port) (0x100 + (_port) * 0x100) argument 104 #define AR9331_SW_REG_PORT_CTRL(_port) (0x104 + (_port) * 0x100) argument 113 #define AR9331_SW_REG_PORT_VLAN(_port) (0x108 + (_port) * 0x100) argument
|
/linux/drivers/cxl/core/ |
H A D | port.c | 599 static void unregister_port(void *_port) in unregister_port() argument 601 struct cxl_port *port = _port; in unregister_port() 627 static void cxl_unlink_uport(void *_port) in cxl_unlink_uport() argument 629 struct cxl_port *port = _port; in cxl_unlink_uport() 645 static void cxl_unlink_parent_dport(void *_port) in cxl_unlink_parent_dport() argument 647 struct cxl_port *port = _port; in cxl_unlink_parent_dport() 674 struct cxl_port *port, *_port __free(kfree) = NULL; in cxl_port_alloc() 684 _port = kzalloc(sizeof(*port), GFP_KERNEL); in cxl_port_alloc() 685 if (!_port) in cxl_port_alloc() 696 port = no_free_ptr(_port); in cxl_port_alloc()
|
/linux/drivers/parport/ |
H A D | share.c | 152 static int driver_check(struct device_driver *dev_drv, void *_port) in driver_check() argument 154 struct parport *port = _port; in driver_check() 175 static int driver_detach(struct device_driver *_drv, void *_port) in driver_detach() argument 177 struct parport *port = _port; in driver_detach()
|
/linux/drivers/tty/serial/8250/ |
H A D | Makefile | 13 8250_base-y := 8250_port.o
|
/linux/Documentation/ABI/testing/ |
H A D | sysfs-bus-intel_th-devices-gth | 8 What: /sys/bus/intel_th/devices/<intel_th_id>-gth/outputs/[0-7]_port
|
/linux/drivers/phy/mscc/ |
H A D | phy-ocelot-serdes.c | 345 #define SERDES_MUX(_idx, _port, _mode, _submode, _mask, _mux) { \ argument 347 .port = _port, \
|
/linux/drivers/phy/marvell/ |
H A D | phy-mvebu-cp110-comphy.c | 188 #define ETH_CONF(_lane, _port, _submode, _mux, _fw) \ argument 191 .port = _port, \ 198 #define GEN_CONF(_lane, _port, _mode, _fw) \ argument 201 .port = _port, \
|
/linux/drivers/usb/host/ |
H A D | xhci-dbgtty.c | 434 static int dbc_port_activate(struct tty_port *_port, struct tty_struct *tty) in xhci_dbc_tty_exit_port() 437 struct dbc_port *port = container_of(_port, struct dbc_port, port); in xhci_dbc_tty_exit_port() 402 dbc_port_activate(struct tty_port * _port,struct tty_struct * tty) dbc_port_activate() argument
|
/linux/drivers/net/ethernet/intel/ice/ |
H A D | ice_ptp_hw.h | 787 #define PHY_PTP_1STEP_PEER_DELAY(_port) (0x274 + 4 * (_port)) argument
|
/linux/drivers/phy/microchip/ |
H A D | lan966x_serdes.c | 29 #define SERDES_MUX(_idx, _port, _mode, _submode, _mask, _mux) { \ argument 31 .port = _port, \
|
/linux/drivers/net/ethernet/qlogic/netxen/ |
H A D | netxen_nic.h | 303 #define netxen_set_tx_port(_desc, _port) \ argument 304 (_desc)->port_ctxid = ((_port) & 0xf) | (((_port) << 4) & 0xf0)
|
/linux/net/tipc/ |
H A D | socket.c | 3839 u32 _port, _sktype, _type, _lower, _upper; in tipc_sk_filtering() local 3847 _port = sysctl_tipc_sk_filter[0]; in tipc_sk_filtering() 3853 if (!_port && !_sktype && !_type && !_lower && !_upper) in tipc_sk_filtering() 3856 if (_port) in tipc_sk_filtering() 3857 return (_port == tsk->portid); in tipc_sk_filtering()
|
/linux/drivers/net/ethernet/qlogic/qlcnic/ |
H A D | qlcnic_io.c | 38 #define qlcnic_set_tx_port(_desc, _port) \ argument 39 ((_desc)->port_ctxid = ((_port) & 0xf) | (((_port) << 4) & 0xf0))
|
/linux/drivers/edac/ |
H A D | pnd2_edac.c | 299 ops->rd_reg(regname ## _port, \
|