Home
last modified time | relevance | path

Searched +full:slave +full:- +full:dev (Results 1 – 25 of 802) sorted by relevance

12345678910>>...33

/linux/drivers/net/ethernet/mellanox/mlx4/
H A Dresource_tracker.c17 * - Redistributions of source code must retain the above
21 * - Redistributions in binary form must reproduce the above
228 /* > 0 --> apply mirror when getting into HA mode */
229 /* = 0 --> un-apply mirror when getting out of HA mode */
237 struct rb_node *node = root->rb_node; in res_tracker_lookup()
243 if (res_id < res->res_id) in res_tracker_lookup()
244 node = node->rb_left; in res_tracker_lookup()
245 else if (res_id > res->res_id) in res_tracker_lookup()
246 node = node->rb_right; in res_tracker_lookup()
255 struct rb_node **new = &(root->rb_node), *parent = NULL; in res_tracker_insert()
[all …]
H A Dcmd.c16 * - Redistributions of source code must retain the above
20 * - Redistributions in binary form must reproduce the above
136 static int mlx4_master_process_vhcr(struct mlx4_dev *dev, int slave,
142 [CMD_STAT_INTERNAL_ERR] = -EIO, in mlx4_status_to_errno()
143 [CMD_STAT_BAD_OP] = -EPERM, in mlx4_status_to_errno()
144 [CMD_STAT_BAD_PARAM] = -EINVAL, in mlx4_status_to_errno()
145 [CMD_STAT_BAD_SYS_STATE] = -ENXIO, in mlx4_status_to_errno()
146 [CMD_STAT_BAD_RESOURCE] = -EBADF, in mlx4_status_to_errno()
147 [CMD_STAT_RESOURCE_BUSY] = -EBUSY, in mlx4_status_to_errno()
148 [CMD_STAT_EXCEED_LIM] = -ENOMEM, in mlx4_status_to_errno()
[all …]
H A Deq.c15 * - Redistributions of source code must retain the above
19 * - Redistributions in binary form must reproduce the above
38 #include <linux/dma-mapping.h>
86 static u64 get_async_ev_mask(struct mlx4_dev *dev) in get_async_ev_mask() argument
89 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_PORT_MNG_CHG_EV) in get_async_ev_mask()
91 if (dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_RECOVERABLE_ERROR_EVENT) in get_async_ev_mask()
99 __raw_writel((__force u32) cpu_to_be32((eq->cons_index & 0xffffff) | in eq_set_ci()
101 eq->doorbell); in eq_set_ci()
109 /* (entry & (eq->nent - 1)) gives us a cyclic array */ in get_eqe()
110 unsigned long offset = (entry & (eq->nent - 1)) * eqe_size; in get_eqe()
[all …]
H A Dmlx4.h18 * - Redistributions of source code must retain the above
22 * - Redistributions in binary form must reproduce the above
41 #include <linux/radix-tree.h>
60 #define DRV_VERSION "4.0-0"
88 MLX4_MAX_QP_PER_MGM = 4 * ((1 << MLX4_MAX_MGM_LOG_ENTRY_SIZE) / 16 - 2),
134 /*The flag indicates that the slave should delay the RESET cmd*/
205 int (*verify)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
207 int (*wrapper)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
223 &(mdev)->persist->pdev->dev, format, \
228 dev_err(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
[all …]
/linux/drivers/fsi/
H A Dfsi-core.c1 // SPDX-License-Identifier: GPL-2.0-only
8 * - Rework topology
9 * - s/chip_id/chip_loc
10 * - s/cfam/chip (cfam_id -> chip_id etc...)
27 #include "fsi-master.h"
28 #include "fsi-slave.h"
51 * FSI slave engine control register offsets
55 #define FSI_SSTAT 0x14 /* R : Slave status */
94 /* Legacy /dev numbering: 4 devices per chip, 16 chips */
106 * FSI endpoint-device support
[all …]
/linux/drivers/net/bonding/
H A Dbond_main.c1 // SPDX-License-Identifier: GPL-1.0+
21 * the first slave bonded to the channel. All slaves will then use
28 * will attach eth0 to bond0 as a slave. eth0 hw mac address will either
98 /*---------------------------- Module parameters ----------------------------*/
147 MODULE_PARM_DESC(mode, "Mode of operation; 0 for balance-rr, "
148 "1 for active-backup, 2 for balance-xor, "
149 "3 for broadcast, 4 for 802.3ad, 5 for balance-tlb, "
150 "6 for balance-alb");
154 MODULE_PARM_DESC(primary_reselect, "Reselect primary slave "
159 "2 for only on active slave "
[all …]
H A Dbond_options.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * drivers/net/bond/bond_options.c - bonding options
96 { "balance-rr", BOND_MODE_ROUNDROBIN, BOND_VALFLAG_DEFAULT},
97 { "active-backup", BOND_MODE_ACTIVEBACKUP, 0},
98 { "balance-xor", BOND_MODE_XOR, 0},
101 { "balance-tlb", BOND_MODE_TLB, 0},
102 { "balance-alb", BOND_MODE_ALB, 0},
103 { NULL, -1, 0},
109 { NULL, -1, 0},
119 { NULL, -1, 0},
[all …]
/linux/drivers/soundwire/
H A Dbus_type.c1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright(c) 2015-17 Intel Corporation.
14 * sdw_get_device_id - find the matching SoundWire device id
15 * @slave: SoundWire Slave Device
16 * @drv: SoundWire Slave Driver
22 sdw_get_device_id(struct sdw_slave *slave, const struct sdw_driver *drv) in sdw_get_device_id() argument
26 for (id = drv->id_table; id && id->mfg_id; id++) in sdw_get_device_id()
27 if (slave->id.mfg_id == id->mfg_id && in sdw_get_device_id()
28 slave->id.part_id == id->part_id && in sdw_get_device_id()
29 (!id->sdw_version || in sdw_get_device_id()
[all …]
H A Ddebugfs.c1 // SPDX-License-Identifier: GPL-2.0-only
2 // Copyright(c) 2017-2019 Intel Corporation.
25 /* create the debugfs master-N */ in sdw_bus_debugfs_init()
26 snprintf(name, sizeof(name), "master-%d-%d", bus->controller_id, bus->link_id); in sdw_bus_debugfs_init()
27 bus->debugfs = debugfs_create_dir(name, sdw_debugfs_root); in sdw_bus_debugfs_init()
32 debugfs_remove_recursive(bus->debugfs); in sdw_bus_debugfs_exit()
37 static ssize_t sdw_sprintf(struct sdw_slave *slave, in sdw_sprintf() argument
42 value = sdw_read_no_pm(slave, reg); in sdw_sprintf()
45 return scnprintf(buf + pos, RD_BUF - pos, "%3x\tXX\n", reg); in sdw_sprintf()
47 return scnprintf(buf + pos, RD_BUF - pos, in sdw_sprintf()
[all …]
H A Dstream.c1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
2 // Copyright(c) 2015-18 Intel Corporation.
5 * stream.c - SoundWire Bus stream operations.
64 struct sdw_slave *slave, in _sdw_program_slave_port_params() argument
72 if (bus->params.next_bank) { in _sdw_program_slave_port_params()
73 addr1 = SDW_DPN_OFFSETCTRL2_B1(t_params->port_num); in _sdw_program_slave_port_params()
74 addr2 = SDW_DPN_BLOCKCTRL3_B1(t_params->port_num); in _sdw_program_slave_port_params()
75 addr3 = SDW_DPN_SAMPLECTRL2_B1(t_params->port_num); in _sdw_program_slave_port_params()
76 addr4 = SDW_DPN_HCTRL_B1(t_params->port_num); in _sdw_program_slave_port_params()
78 addr1 = SDW_DPN_OFFSETCTRL2_B0(t_params->port_num); in _sdw_program_slave_port_params()
[all …]
H A Dmipi_disco.c1 // SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
2 // Copyright(c) 2015-17 Intel Corporation.
10 * The helper functions read the Master and Slave properties. Implementers
11 * of Master or Slave drivers can use any of the below three mechanisms:
12 * a) Use these APIs here as .read_prop() callback for Master and Slave
40 static bool mipi_device_property_read_bool(const struct device *dev, in mipi_device_property_read_bool() argument
43 return mipi_fwnode_property_read_bool(dev_fwnode(dev), propname); in mipi_device_property_read_bool()
47 * sdw_master_read_prop() - Read Master properties
52 struct sdw_master_prop *prop = &bus->prop; in sdw_master_read_prop()
60 device_property_read_u32(bus->dev, in sdw_master_read_prop()
[all …]
/linux/include/net/
H A Dbonding.h1 /* SPDX-License-Identifier: GPL-1.0+ */
5 * Portions are (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
43 netdev_info(bond_dev, "(slave %s): " fmt, (slave_dev)->name, ##__VA_ARGS__)
45 netdev_warn(bond_dev, "(slave %s): " fmt, (slave_dev)->name, ##__VA_ARGS__)
47 netdev_dbg(bond_dev, "(slave %s): " fmt, (slave_dev)->nam
106 is_netpoll_tx_blocked(struct net_device * dev) is_netpoll_tx_blocked() argument
115 is_netpoll_tx_blocked(dev) global() argument
160 struct slave { global() struct
161 struct net_device *dev; /* first - useful for panic debug */ global() member
171 backupslave global() argument
173 inactiveslave global() argument
174 rx_disabledslave global() argument
184 ad_infoslave global() argument
185 tlb_infoslave global() argument
191 slave_statsslave global() argument
194 kobjslave to_slave() argument
220 struct net_device *dev; /* first - useful for panic debug */ global() member
271 bond_slave_get_rcu(dev) global() argument
274 bond_slave_get_rtnl(dev) global() argument
296 bond_get_bond_by_slave(struct slave * slave) bond_get_bond_by_slave() argument
357 struct slave *slave = rcu_dereference_rtnl(bond->curr_active_slave); bond_option_active_slave_get_rcu() local
362 bond_slave_is_up(struct slave * slave) bond_slave_is_up() argument
367 bond_set_active_slave(struct slave * slave) bond_set_active_slave() argument
376 bond_set_backup_slave(struct slave * slave) bond_set_backup_slave() argument
385 bond_set_slave_state(struct slave * slave,int slave_state,bool notify) bond_set_slave_state() argument
430 bond_slave_state(struct slave * slave) bond_slave_state() argument
435 bond_is_active_slave(struct slave * slave) bond_is_active_slave() argument
440 bond_slave_can_tx(struct slave * slave) bond_slave_can_tx() argument
448 struct slave *slave; bond_is_active_slave_dev() local
495 slave_do_arp_validate(struct bonding * bond,struct slave * slave) slave_do_arp_validate() argument
523 slave_oldest_target_arp_rx(struct bonding * bond,struct slave * slave) slave_oldest_target_arp_rx() argument
536 slave_last_rx(struct bonding * bond,struct slave * slave) slave_last_rx() argument
544 slave_update_last_tx(struct slave * slave) slave_update_last_tx() argument
549 slave_last_tx(struct slave * slave) slave_last_tx() argument
555 bond_netpoll_send_skb(const struct slave * slave,struct sk_buff * skb) bond_netpoll_send_skb() argument
561 bond_netpoll_send_skb(const struct slave * slave,struct sk_buff * skb) bond_netpoll_send_skb() argument
569 bond_set_slave_inactive_flags(struct slave * slave,bool notify) bond_set_slave_inactive_flags() argument
580 bond_set_slave_tx_disabled_flags(struct slave * slave,bool notify) bond_set_slave_tx_disabled_flags() argument
586 bond_set_slave_active_flags(struct slave * slave,bool notify) bond_set_slave_active_flags() argument
595 bond_set_slave_rx_enabled_flags(struct slave * slave,bool notify) bond_set_slave_rx_enabled_flags() argument
601 bond_is_slave_inactive(struct slave * slave) bond_is_slave_inactive() argument
606 bond_is_slave_rx_disabled(struct slave * slave) bond_is_slave_rx_disabled() argument
611 bond_propose_link_state(struct slave * slave,int state) bond_propose_link_state() argument
616 bond_commit_link_state(struct slave * slave,bool notify) bond_commit_link_state() argument
634 bond_set_slave_link_state(struct slave * slave,int state,bool notify) bond_set_slave_link_state() argument
655 bond_confirm_addr(struct net_device * dev,__be32 dst,__be32 local) bond_confirm_addr() argument
810 bond_tx_drop(struct net_device * dev,struct sk_buff * skb) bond_tx_drop() argument
[all...]
/linux/drivers/net/
H A Deql.c2 * Equalizer Load-balancer for serial network interfaces.
4 * (c) Copyright 1995 Simon "Guru Aleph-Null" Janes
17 * Phone: 1-703-847-0040 ext 103
33 * Added one-line eql_remove_slave patch.
47 * slave_load = (ULONG_MAX - (ULONG_MAX / 2)) -
52 * slave_load = (ULONG_MAX - (ULONG_MAX / 2)) -
56 * slave_load = (ULONG_MAX - (ULONG_MAX / 2)) -
60 * slave_load = (ULONG_MAX - (ULONG_MAX / 2)) -
74 * Broken set-bit locking snapshot
80 * Log trimmed of non-pertinent 1.x branch messages
[all …]
/linux/sound/soc/codecs/
H A Drt5682-sdw.c1 // SPDX-License-Identifier: GPL-2.0-only
3 // rt5682-sdw.c -- RT5682 ALSA SoC audio component driver
27 #include <sound/soc-dapm.h>
41 struct device *dev = context; in rt5682_sdw_read() local
42 struct rt5682_priv *rt5682 = dev_get_drvdata(dev); in rt5682_sdw_read()
45 regmap_write(rt5682->sdw_regmap, RT5682_SDW_CMD, 0); in rt5682_sdw_read()
46 regmap_write(rt5682->sdw_regmap, RT5682_SDW_ADDR_H, (reg >> 8) & 0xff); in rt5682_sdw_read()
47 regmap_write(rt5682->sdw_regmap, RT5682_SDW_ADDR_L, (reg & 0xff)); in rt5682_sdw_read()
48 regmap_read(rt5682->sdw_regmap, RT5682_SDW_DATA_H, &data_h); in rt5682_sdw_read()
49 regmap_read(rt5682->sdw_regmap, RT5682_SDW_DATA_L, &data_l); in rt5682_sdw_read()
[all …]
H A Drt722-sdca-sdw.c1 // SPDX-License-Identifier: GPL-2.0-only
3 // rt722-sdca-sdw.c -- rt722 SDCA ALSA SoC audio driver
16 #include "rt722-sdca.h"
17 #include "rt722-sdca-sdw.h"
19 static int rt722_sdca_mbq_size(struct device *dev, unsigned int reg) in rt722_sdca_mbq_size() argument
154 static bool rt722_sdca_readable_register(struct device *dev, unsigned int reg) in rt722_sdca_readable_register() argument
156 return rt722_sdca_mbq_size(dev, reg) > 0; in rt722_sdca_readable_register()
159 static bool rt722_sdca_volatile_register(struct device *dev, unsigned int reg) in rt722_sdca_volatile_register() argument
208 static int rt722_sdca_update_status(struct sdw_slave *slave, in rt722_sdca_update_status() argument
211 struct rt722_sdca_priv *rt722 = dev_get_drvdata(&slave->dev); in rt722_sdca_update_status()
[all …]
H A Dmax98363.c1 // SPDX-License-Identifier: GPL-2.0-only
28 static bool max98363_readable_register(struct device *dev, unsigned int reg) in max98363_readable_register() argument
49 static bool max98363_volatile_reg(struct device *dev, unsigned int reg) in max98363_volatile_reg() argument
77 static int max98363_suspend(struct device *dev) in max98363_suspend() argument
79 struct max98363_priv *max98363 = dev_get_drvdata(dev); in max98363_suspend()
81 regcache_cache_only(max98363->regmap, true); in max98363_suspend()
82 regcache_mark_dirty(max98363->regmap); in max98363_suspend()
89 static int max98363_resume(struct device *dev) in max98363_resume() argument
91 struct sdw_slave *slave = dev_to_sdw_dev(dev); in max98363_resume() local
92 struct max98363_priv *max98363 = dev_get_drvdata(dev); in max98363_resume()
[all …]
H A Drt1308-sdw.c1 // SPDX-License-Identifier: GPL-2.0
3 // rt1308-sdw.c -- rt1308 ALSA SoC audio driver
22 #include <sound/soc-dapm.h>
26 #include "rt1308-sdw.h"
28 static bool rt1308_readable_register(struct device *dev, unsigned int reg) in rt1308_readable_register() argument
45 static bool rt1308_volatile_register(struct device *dev, unsigned int reg) in rt1308_volatile_register() argument
85 static int rt1308_clock_config(struct device *dev) in rt1308_clock_config() argument
87 struct rt1308_sdw_priv *rt1308 = dev_get_drvdata(dev); in rt1308_clock_config()
90 clk_freq = (rt1308->params.curr_dr_freq >> 1); in rt1308_clock_config()
112 return -EINVAL; in rt1308_clock_config()
[all …]
H A Drt1017-sdca-sdw.c1 // SPDX-License-Identifier: GPL-2.0-only
3 // rt1017-sdca-sdw.c -- rt1017 SDCA ALSA SoC amplifier audio driver
18 #include <sound/soc-dapm.h>
22 #include "rt1017-sdca-sdw.h"
24 static bool rt1017_sdca_readable_register(struct device *dev, unsigned int reg) in rt1017_sdca_readable_register() argument
112 static bool rt1017_sdca_volatile_register(struct device *dev, unsigned int reg) in rt1017_sdca_volatile_register() argument
257 static int rt1017_sdca_read_prop(struct sdw_slave *slave) in rt1017_sdca_read_prop() argument
259 struct sdw_slave_prop *prop = &slave->prop; in rt1017_sdca_read_prop()
266 prop->scp_int1_mask = SDW_SCP_INT1_BUS_CLASH | SDW_SCP_INT1_PARITY; in rt1017_sdca_read_prop()
267 prop->quirks = SDW_SLAVE_QUIRKS_INVALID_INITIAL_PARITY; in rt1017_sdca_read_prop()
[all …]
H A Dmax98373-sdw.c1 // SPDX-License-Identifier: GPL-2.0-only
21 #include "max98373-sdw.h"
178 static bool max98373_readable_register(struct device *dev, unsigned int reg) in max98373_readable_register() argument
214 static bool max98373_volatile_reg(struct device *dev, unsigned int reg) in max98373_volatile_reg() argument
249 static int max98373_suspend(struct device *dev) in max98373_suspend() argument
251 struct max98373_priv *max98373 = dev_get_drvdata(dev); in max98373_suspend()
255 for (i = 0; i < max98373->cache_num; i++) in max98373_suspend()
256 regmap_read(max98373->regmap, max98373->cache[i].reg, &max98373->cache[i].val); in max98373_suspend()
258 regcache_cache_only(max98373->regmap, true); in max98373_suspend()
265 static int max98373_resume(struct device *dev) in max98373_resume() argument
[all …]
/linux/drivers/net/ethernet/ti/
H A Dnetcp_ethss.c1 // SPDX-License-Identifier: GPL-2.0
7 * Sandeep Paulraj <s-paulraj@ti.com>
10 * Wingman Kwok <w-kwok2@ti.com>
37 #define GBE_MODULE_NAME "netcp-gbe"
56 #define GBENU_MODULE_NAME "netcp-gbenu"
61 ((GBE_IDENT((d)->ss_version) == GBE_SS_ID_NU) || \
62 (GBE_IDENT((d)->ss_version) == GBE_SS_ID_2U))
65 (GBE_IDENT((d)->ss_version) == GBE_SS_ID_NU)
68 (GBE_IDENT((d)->ss_version) == GBE_SS_VERSION_14)
70 (GBE_IDENT((d)->ss_version) == GBE_SS_ID_2U)
[all …]
H A Dcpsw-common.c1 // SPDX-License-Identifier: GPL-2.0+
14 static int davinci_emac_3517_get_macid(struct device *dev, u16 offset, in davinci_emac_3517_get_macid() argument
15 int slave, u8 *mac_addr) in davinci_emac_3517_get_macid() argument
21 syscon = syscon_regmap_lookup_by_phandle(dev->of_node, "syscon"); in davinci_emac_3517_get_macid()
23 if (PTR_ERR(syscon) == -ENODEV) in davinci_emac_3517_get_macid()
28 regmap_read(syscon, CTRL_MAC_LO_REG(offset, slave), &macid_lsb); in davinci_emac_3517_get_macid()
29 regmap_read(syscon, CTRL_MAC_HI_REG(offset, slave), &macid_msb); in davinci_emac_3517_get_macid()
41 static int cpsw_am33xx_cm_get_macid(struct device *dev, u16 offset, int slave, in cpsw_am33xx_cm_get_macid() argument
48 syscon = syscon_regmap_lookup_by_phandle(dev->of_node, "syscon"); in cpsw_am33xx_cm_get_macid()
50 if (PTR_ERR(syscon) == -ENODEV) in cpsw_am33xx_cm_get_macid()
[all …]
H A Dcpsw-phy-sel.c1 // SPDX-License-Identifier: GPL-2.0
31 struct device *dev; member
35 phy_interface_t phy_mode, int slave);
40 phy_interface_t phy_mode, int slave) in cpsw_gmii_sel_am3352() argument
47 reg = readl(priv->gmii_sel); in cpsw_gmii_sel_am3352()
66 dev_warn(priv->dev, in cpsw_gmii_sel_am3352()
75 mask = GMII_SEL_MODE_MASK << (slave * 2) | BIT(slave + 6); in cpsw_gmii_sel_am3352()
76 mask |= BIT(slave + 4); in cpsw_gmii_sel_am3352()
77 mode <<= slave * 2; in cpsw_gmii_sel_am3352()
79 if (priv->rmii_clock_external) { in cpsw_gmii_sel_am3352()
[all …]
/linux/drivers/infiniband/hw/mlx4/
H A Dsysfs.c14 * - Redistributions of source code must retain the above
18 * - Redistributions in binary form must reproduce the above
42 * 0 - requests opensm to assign a value.
43 * ffffffffffffffff - delete this entry.
44 * other - value assigned by administrator.
46 static ssize_t show_admin_alias_guid(struct device *dev, in show_admin_alias_guid() argument
51 struct mlx4_ib_iov_port *port = mlx4_ib_iov_dentry->ctx; in show_admin_alias_guid()
52 struct mlx4_ib_dev *mdev = port->dev; in show_admin_alias_guid()
55 sysadmin_ag_val = mlx4_get_admin_guid(mdev->dev, in show_admin_alias_guid()
56 mlx4_ib_iov_dentry->entry_num, in show_admin_alias_guid()
[all …]
/linux/drivers/i2c/busses/
H A Di2c-mlxbf.c1 // SPDX-License-Identifier: GPL-2.0
59 * memory-mapped region whose addresses are specified in either the DT or
69 /* Reference clock for Bluefield - 156 MHz. */
126 * Slave cause status flags. Note that those bits might be considered
134 /* Slave busy bit reset. */
151 * SMBUS GW0 -> bits[26:25]
152 * SMBUS GW1 -> bits[28:27]
153 * SMBUS GW2 -> bits[30:29]
239 #define MLXBF_I2C_MASTER_SLV_ADDR_SHIFT 12 /* Slave address */
248 #define MLXBF_I2C_MASTER_DATA_W_LENGTH (MLXBF_I2C_MASTER_DATA_DESC_SIZE - 1)
[all …]
/linux/drivers/dma/dw/
H A Dof.c1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2007-2008 Atmel Corporation
6 * Copyright (C) 2010-2011 ST Microelectronics
19 struct dw_dma *dw = ofdma->of_dma_data; in dw_dma_of_xlate()
20 struct dw_dma_slave slave = { in dw_dma_of_xlate() local
21 .dma_dev = dw->dma.dev, in dw_dma_of_xlate()
25 if (dma_spec->args_count < 3 || dma_spec->args_count > 4) in dw_dma_of_xlate()
28 slave.src_id = dma_spec->args[0]; in dw_dma_of_xlate()
29 slave.dst_id = dma_spec->args[0]; in dw_dma_of_xlate()
30 slave.m_master = dma_spec->args[1]; in dw_dma_of_xlate()
[all …]

12345678910>>...33