Home
last modified time | relevance | path

Searched refs:dev (Results 401 – 425 of 25741) sorted by relevance

1...<<11121314151617181920>>...1030

/openbmc/linux/drivers/media/pci/cx88/
H A Dcx88-mpeg.c44 struct cx8802_dev *dev = container_of(work, struct cx8802_dev, in request_module_async() local
47 if (dev->core->board.mpeg & CX88_MPEG_DVB) in request_module_async()
49 if (dev->core->board.mpeg & CX88_MPEG_BLACKBIRD) in request_module_async()
53 static void request_modules(struct cx8802_dev *dev) in request_modules() argument
55 INIT_WORK(&dev->request_module_wk, request_module_async); in request_modules()
56 schedule_work(&dev->request_module_wk); in request_modules()
59 static void flush_request_modules(struct cx8802_dev *dev) in flush_request_modules() argument
61 flush_work(&dev->request_module_wk); in flush_request_modules()
64 #define request_modules(dev) argument
65 #define flush_request_modules(dev) argument
[all …]
/openbmc/linux/drivers/comedi/drivers/
H A Daddi_apci_1500.c55 static unsigned int z8536_read(struct comedi_device *dev, unsigned int reg) in z8536_read() argument
60 spin_lock_irqsave(&dev->spinlock, flags); in z8536_read()
61 outb(reg, dev->iobase + APCI1500_Z8536_CTRL_REG); in z8536_read()
62 val = inb(dev->iobase + APCI1500_Z8536_CTRL_REG); in z8536_read()
63 spin_unlock_irqrestore(&dev->spinlock, flags); in z8536_read()
68 static void z8536_write(struct comedi_device *dev, in z8536_write() argument
73 spin_lock_irqsave(&dev->spinlock, flags); in z8536_write()
74 outb(reg, dev->iobase + APCI1500_Z8536_CTRL_REG); in z8536_write()
75 outb(val, dev->iobase + APCI1500_Z8536_CTRL_REG); in z8536_write()
76 spin_unlock_irqrestore(&dev->spinlock, flags); in z8536_write()
[all …]
H A Dni_pcidio.c293 static int ni_pcidio_request_di_mite_channel(struct comedi_device *dev) in ni_pcidio_request_di_mite_channel() argument
295 struct nidio96_private *devpriv = dev->private; in ni_pcidio_request_di_mite_channel()
305 dev_err(dev->class_dev, "failed to reserve mite dma channel\n"); in ni_pcidio_request_di_mite_channel()
311 dev->mmio + DMA_LINE_CONTROL_GROUP1); in ni_pcidio_request_di_mite_channel()
316 static void ni_pcidio_release_di_mite_channel(struct comedi_device *dev) in ni_pcidio_release_di_mite_channel() argument
318 struct nidio96_private *devpriv = dev->private; in ni_pcidio_release_di_mite_channel()
327 dev->mmio + DMA_LINE_CONTROL_GROUP1); in ni_pcidio_release_di_mite_channel()
332 static int setup_mite_dma(struct comedi_device *dev, struct comedi_subdevice *s) in setup_mite_dma() argument
334 struct nidio96_private *devpriv = dev->private; in setup_mite_dma()
338 retval = ni_pcidio_request_di_mite_channel(dev); in setup_mite_dma()
[all …]
/openbmc/linux/drivers/nvdimm/
H A Dclaim.c14 void __nd_detach_ndns(struct device *dev, struct nd_namespace_common **_ndns) in __nd_detach_ndns() argument
22 nvdimm_bus = walk_to_nvdimm_bus(&ndns->dev); in __nd_detach_ndns()
24 dev_WARN_ONCE(dev, ndns->claim != dev, "%s: invalid claim\n", __func__); in __nd_detach_ndns()
27 put_device(&ndns->dev); in __nd_detach_ndns()
30 void nd_detach_ndns(struct device *dev, in nd_detach_ndns() argument
37 get_device(&ndns->dev); in nd_detach_ndns()
38 nvdimm_bus_lock(&ndns->dev); in nd_detach_ndns()
39 __nd_detach_ndns(dev, _ndns); in nd_detach_ndns()
40 nvdimm_bus_unlock(&ndns->dev); in nd_detach_ndns()
41 put_device(&ndns->dev); in nd_detach_ndns()
[all …]
H A Dbus.c31 static int to_nd_device_type(const struct device *dev) in to_nd_device_type() argument
33 if (is_nvdimm(dev)) in to_nd_device_type()
35 else if (is_memory(dev)) in to_nd_device_type()
37 else if (is_nd_dax(dev)) in to_nd_device_type()
39 else if (is_nd_region(dev->parent)) in to_nd_device_type()
40 return nd_region_to_nstype(to_nd_region(dev->parent)); in to_nd_device_type()
45 static int nvdimm_bus_uevent(const struct device *dev, struct kobj_uevent_env *env) in nvdimm_bus_uevent() argument
48 to_nd_device_type(dev)); in nvdimm_bus_uevent()
51 static struct module *to_bus_provider(struct device *dev) in to_bus_provider() argument
54 if (is_nd_region(dev)) { in to_bus_provider()
[all …]
/openbmc/u-boot/drivers/adc/
H A Dadc-uclass.c28 static int check_channel(struct udevice *dev, int value, bool number_or_mask, in check_channel() argument
31 struct adc_uclass_platdata *uc_pdata = dev_get_uclass_platdata(dev); in check_channel()
43 __FILE__, caller_function, dev->name); in check_channel()
48 static int adc_supply_enable(struct udevice *dev) in adc_supply_enable() argument
50 struct adc_uclass_platdata *uc_pdata = dev_get_uclass_platdata(dev); in adc_supply_enable()
65 pr_err("%s: can't enable %s-supply!", dev->name, supply_type); in adc_supply_enable()
70 int adc_data_mask(struct udevice *dev, unsigned int *data_mask) in adc_data_mask() argument
72 struct adc_uclass_platdata *uc_pdata = dev_get_uclass_platdata(dev); in adc_data_mask()
81 int adc_channel_mask(struct udevice *dev, unsigned int *channel_mask) in adc_channel_mask() argument
83 struct adc_uclass_platdata *uc_pdata = dev_get_uclass_platdata(dev); in adc_channel_mask()
[all …]
/openbmc/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Dsriov.c40 static int sriov_restore_guids(struct mlx5_core_dev *dev, int vf, u16 func_id) in sriov_restore_guids() argument
42 struct mlx5_core_sriov *sriov = &dev->priv.sriov; in sriov_restore_guids()
62 err = mlx5_core_modify_hca_vport_context(dev, 1, 1, func_id, in); in sriov_restore_guids()
64 mlx5_core_warn(dev, "modify vport context failed, unable to restore VF %d settings\n", vf); in sriov_restore_guids()
72 static int mlx5_device_enable_sriov(struct mlx5_core_dev *dev, int num_vfs) in mlx5_device_enable_sriov() argument
74 struct mlx5_core_sriov *sriov = &dev->priv.sriov; in mlx5_device_enable_sriov()
78 err = mlx5_eswitch_enable(dev->priv.eswitch, num_vfs); in mlx5_device_enable_sriov()
80 mlx5_core_warn(dev, in mlx5_device_enable_sriov()
85 num_msix_count = mlx5_get_default_msix_vec_count(dev, num_vfs); in mlx5_device_enable_sriov()
91 MLX5_PF_NOTIFY_ENABLE_VF, dev); in mlx5_device_enable_sriov()
[all …]
/openbmc/linux/drivers/media/test-drivers/vivid/
H A Dvivid-cec.c23 static bool find_dest_adap(struct vivid_dev *dev, in find_dest_adap() argument
31 if (adap != dev->cec_rx_adap && dev->cec_rx_adap && in find_dest_adap()
32 dev->cec_rx_adap->is_configured && in find_dest_adap()
33 cec_has_log_addr(dev->cec_rx_adap, dest)) in find_dest_adap()
36 for (i = 0; i < MAX_OUTPUTS && dev->cec_tx_adap[i]; i++) { in find_dest_adap()
37 if (adap == dev->cec_tx_adap[i]) in find_dest_adap()
39 if (!dev->cec_tx_adap[i]->is_configured) in find_dest_adap()
41 if (cec_has_log_addr(dev->cec_tx_adap[i], dest)) in find_dest_adap()
47 static bool xfer_ready(struct vivid_dev *dev) in xfer_ready() argument
52 spin_lock(&dev->cec_xfers_slock); in xfer_ready()
[all …]
/openbmc/linux/drivers/misc/cxl/
H A Dpci.c29 #define CXL_READ_VSEC_LENGTH(dev, vsec, dest) \ argument
31 pci_read_config_word(dev, vsec + 0x6, dest); \
34 #define CXL_READ_VSEC_NAFUS(dev, vsec, dest) \ argument
35 pci_read_config_byte(dev, vsec + 0x8, dest)
37 #define CXL_READ_VSEC_STATUS(dev, vsec, dest) \ argument
38 pci_read_config_byte(dev, vsec + 0x9, dest)
50 #define CXL_READ_VSEC_MODE_CONTROL(dev, vsec, dest) \ argument
51 pci_read_config_byte(dev, vsec + 0xa, dest)
52 #define CXL_WRITE_VSEC_MODE_CONTROL(dev, vsec, val) \ argument
53 pci_write_config_byte(dev, vsec + 0xa, val)
[all …]
/openbmc/linux/include/linux/
H A Dreset.h47 struct reset_control *__reset_control_get(struct device *dev, const char *id,
51 int __reset_control_bulk_get(struct device *dev, int num_rstcs,
56 int __device_reset(struct device *dev, bool optional);
57 struct reset_control *__devm_reset_control_get(struct device *dev,
60 int __devm_reset_control_bulk_get(struct device *dev, int num_rstcs,
64 struct reset_control *devm_reset_control_array_get(struct device *dev,
70 int reset_control_get_count(struct device *dev);
112 static inline int __device_reset(struct device *dev, bool optional) in __device_reset() argument
126 struct device *dev, const char *id, in __reset_control_get() argument
163 __reset_control_bulk_get(struct device *dev, int num_rstcs, in __reset_control_bulk_get() argument
[all …]
/openbmc/linux/drivers/net/ethernet/ti/
H A Dtlan.c155 static int tlan_open(struct net_device *dev);
161 static int tlan_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
164 static void tlan_tx_timeout(struct net_device *dev, unsigned int txqueue);
249 tlan_set_timer(struct net_device *dev, u32 ticks, u32 type) in tlan_set_timer() argument
251 struct tlan_priv *priv = netdev_priv(dev); in tlan_set_timer()
302 struct net_device *dev = pci_get_drvdata(pdev); in tlan_remove_one() local
303 struct tlan_priv *priv = netdev_priv(dev); in tlan_remove_one()
305 unregister_netdev(dev); in tlan_remove_one()
308 dma_free_coherent(&priv->pci_dev->dev, priv->dma_size, in tlan_remove_one()
317 free_netdev(dev); in tlan_remove_one()
[all …]
/openbmc/linux/drivers/net/arcnet/
H A Dcom20020_cs.c52 static void regdump(struct net_device *dev) in regdump() argument
55 int ioaddr = dev->base_addr; in regdump()
58 netdev_dbg(dev, "register dump:\n"); in regdump()
66 netdev_dbg(dev, "buffer0 dump:\n"); in regdump()
114 struct net_device *dev; in com20020_probe() local
118 dev_dbg(&p_dev->dev, "com20020_attach()\n"); in com20020_probe()
125 dev = alloc_arcdev(""); in com20020_probe()
126 if (!dev) in com20020_probe()
129 lp = netdev_priv(dev); in com20020_probe()
137 arcnet_set_addr(dev, node); in com20020_probe()
[all …]
/openbmc/linux/drivers/net/wireless/realtek/rtl818x/rtl8180/
H A Dsa2400.c43 static void write_sa2400(struct ieee80211_hw *dev, u8 addr, u32 data) in write_sa2400() argument
45 struct rtl8180_priv *priv = dev->priv; in write_sa2400()
60 static void sa2400_write_phy_antenna(struct ieee80211_hw *dev, short chan) in sa2400_write_phy_antenna() argument
62 struct rtl8180_priv *priv = dev->priv; in sa2400_write_phy_antenna()
71 rtl8180_write_phy(dev, 0x10, ant); in sa2400_write_phy_antenna()
100 static void sa2400_rf_set_channel(struct ieee80211_hw *dev, in sa2400_rf_set_channel() argument
103 struct rtl8180_priv *priv = dev->priv; in sa2400_rf_set_channel()
109 write_sa2400(dev, 7, txpw); in sa2400_rf_set_channel()
111 sa2400_write_phy_antenna(dev, channel); in sa2400_rf_set_channel()
113 write_sa2400(dev, 0, chan); in sa2400_rf_set_channel()
[all …]
/openbmc/qemu/contrib/vhost-user-gpu/
H A Dvugbm.c39 mem_device_destroy(struct vugbm_device *dev) in mem_device_destroy() argument
113 *fd = ioctl(buf->dev->fd, UDMABUF_CREATE, &create); in udmabuf_get_fd()
125 udmabuf_device_destroy(struct vugbm_device *dev) in udmabuf_device_destroy() argument
127 close(dev->fd); in udmabuf_device_destroy()
135 struct gbm_device *dev = buf->dev->dev; in alloc_bo() local
139 buf->bo = gbm_bo_create(dev, buf->width, buf->height, in alloc_bo()
186 device_destroy(struct vugbm_device *dev) in device_destroy() argument
188 gbm_device_destroy(dev->dev); in device_destroy()
193 vugbm_device_destroy(struct vugbm_device *dev) in vugbm_device_destroy() argument
195 if (!dev->inited) { in vugbm_device_destroy()
[all …]
/openbmc/linux/drivers/media/pci/saa7134/
H A Dsaa7134-ts.c31 static int buffer_activate(struct saa7134_dev *dev, in buffer_activate() argument
39 if (!dev->ts_started) in buffer_activate()
40 dev->ts_field = V4L2_FIELD_TOP; in buffer_activate()
44 if (V4L2_FIELD_TOP == dev->ts_field) { in buffer_activate()
48 dev->ts_field = V4L2_FIELD_BOTTOM; in buffer_activate()
53 dev->ts_field = V4L2_FIELD_TOP; in buffer_activate()
57 saa7134_set_dmabits(dev); in buffer_activate()
59 mod_timer(&dev->ts_q.timeout, jiffies+TS_BUFFER_TIMEOUT); in buffer_activate()
61 if (!dev->ts_started) in buffer_activate()
62 saa7134_ts_start(dev); in buffer_activate()
[all …]
/openbmc/linux/drivers/media/common/saa7146/
H A Dsaa7146_i2c.c17 static inline u32 saa7146_i2c_status(struct saa7146_dev *dev) in saa7146_i2c_status() argument
19 u32 iicsta = saa7146_read(dev, I2C_STATUS); in saa7146_i2c_status()
112 static int saa7146_i2c_reset(struct saa7146_dev *dev) in saa7146_i2c_reset() argument
115 u32 status = saa7146_i2c_status(dev); in saa7146_i2c_reset()
118 saa7146_write(dev, I2C_STATUS, dev->i2c_bitrate); in saa7146_i2c_reset()
119 saa7146_write(dev, I2C_TRANSFER, 0); in saa7146_i2c_reset()
128 saa7146_write(dev, I2C_STATUS, (dev->i2c_bitrate | MASK_07)); in saa7146_i2c_reset()
129 saa7146_write(dev, MC2, (MASK_00 | MASK_16)); in saa7146_i2c_reset()
133 saa7146_write(dev, I2C_STATUS, dev->i2c_bitrate); in saa7146_i2c_reset()
134 saa7146_write(dev, MC2, (MASK_00 | MASK_16)); in saa7146_i2c_reset()
[all …]
/openbmc/linux/drivers/input/mouse/
H A Dbcm5974.c292 static const struct tp_finger *get_tp_finger(const struct bcm5974 *dev, int i) in get_tp_finger() argument
294 const struct bcm5974_config *c = &dev->cfg; in get_tp_finger()
295 u8 *f_base = dev->tp_data + c->tp_header + c->tp_delta; in get_tp_finger()
548 static int report_bt_state(struct bcm5974 *dev, int size) in report_bt_state() argument
555 dev->bt_data->unknown1, dev->bt_data->button, in report_bt_state()
556 dev->bt_data->rel_x, dev->bt_data->rel_y); in report_bt_state()
558 input_report_key(dev->input, BTN_LEFT, dev->bt_data->button); in report_bt_state()
559 input_sync(dev->input); in report_bt_state()
605 static int report_tp_state(struct bcm5974 *dev, int size) in report_tp_state() argument
607 const struct bcm5974_config *c = &dev->cfg; in report_tp_state()
[all …]
/openbmc/linux/drivers/net/usb/
H A Dmcs7830.c109 static int mcs7830_get_reg(struct usbnet *dev, u16 index, u16 size, void *data) in mcs7830_get_reg() argument
113 ret = usbnet_read_cmd(dev, MCS7830_RD_BREQ, MCS7830_RD_BMREQ, in mcs7830_get_reg()
123 static int mcs7830_set_reg(struct usbnet *dev, u16 index, u16 size, const void *data) in mcs7830_set_reg() argument
125 return usbnet_write_cmd(dev, MCS7830_WR_BREQ, MCS7830_WR_BMREQ, in mcs7830_set_reg()
129 static void mcs7830_set_reg_async(struct usbnet *dev, u16 index, u16 size, void *data) in mcs7830_set_reg_async() argument
131 usbnet_write_cmd_async(dev, MCS7830_WR_BREQ, MCS7830_WR_BMREQ, in mcs7830_set_reg_async()
135 static int mcs7830_hif_get_mac_address(struct usbnet *dev, unsigned char *addr) in mcs7830_hif_get_mac_address() argument
137 int ret = mcs7830_get_reg(dev, HIF_REG_ETHERNET_ADDR, ETH_ALEN, addr); in mcs7830_hif_get_mac_address()
143 static int mcs7830_hif_set_mac_address(struct usbnet *dev, in mcs7830_hif_set_mac_address() argument
146 int ret = mcs7830_set_reg(dev, HIF_REG_ETHERNET_ADDR, ETH_ALEN, addr); in mcs7830_hif_set_mac_address()
[all …]
H A Ddm9601.c61 static int dm_read(struct usbnet *dev, u8 reg, u16 length, void *data) in dm_read() argument
64 err = usbnet_read_cmd(dev, DM_READ_REGS, in dm_read()
72 static int dm_read_reg(struct usbnet *dev, u8 reg, u8 *value) in dm_read_reg() argument
74 return dm_read(dev, reg, 1, value); in dm_read_reg()
77 static int dm_write(struct usbnet *dev, u8 reg, u16 length, void *data) in dm_write() argument
80 err = usbnet_write_cmd(dev, DM_WRITE_REGS, in dm_write()
89 static int dm_write_reg(struct usbnet *dev, u8 reg, u8 value) in dm_write_reg() argument
91 return usbnet_write_cmd(dev, DM_WRITE_REG, in dm_write_reg()
96 static void dm_write_async(struct usbnet *dev, u8 reg, u16 length, in dm_write_async() argument
99 usbnet_write_cmd_async(dev, DM_WRITE_REGS, in dm_write_async()
[all …]
/openbmc/linux/drivers/net/ethernet/natsemi/
H A Dnatsemi.c549 struct net_device *dev; member
598 static void move_int_phy(struct net_device *dev, int addr);
600 static int mdio_read(struct net_device *dev, int reg);
601 static void mdio_write(struct net_device *dev, int reg, u16 data);
602 static void init_phy_fixup(struct net_device *dev);
603 static int miiport_read(struct net_device *dev, int phy_id, int reg);
604 static void miiport_write(struct net_device *dev, int phy_id, int reg, u16 data);
605 static int find_mii(struct net_device *dev);
606 static void natsemi_reset(struct net_device *dev);
607 static void natsemi_reload_eeprom(struct net_device *dev);
[all …]
/openbmc/u-boot/drivers/net/
H A Deepro100.c214 static void init_rx_ring (struct eth_device *dev);
215 static void purge_tx_ring (struct eth_device *dev);
217 static void read_hw_addr (struct eth_device *dev, bd_t * bis);
219 static int eepro100_init (struct eth_device *dev, bd_t * bis);
220 static int eepro100_send(struct eth_device *dev, void *packet, int length);
221 static int eepro100_recv (struct eth_device *dev);
222 static void eepro100_halt (struct eth_device *dev);
228 #define bus_to_phys(a) pci_mem_to_phys((pci_dev_t)dev->priv, a)
229 #define phys_to_bus(a) pci_phys_to_mem((pci_dev_t)dev->priv, a)
232 static inline int INW (struct eth_device *dev, u_long addr) in INW() argument
[all …]
/openbmc/linux/drivers/media/tuners/
H A Dm88rs6000t.c26 struct m88rs6000t_dev *dev = fe->tuner_priv; in m88rs6000t_set_demod_mclk() local
36 ret = regmap_read(dev->regmap, 0x15, &utmp); in m88rs6000t_set_demod_mclk()
98 ret = regmap_read(dev->regmap, 0x1D, &utmp); in m88rs6000t_set_demod_mclk()
108 ret = regmap_write(dev->regmap, 0x05, 0x40); in m88rs6000t_set_demod_mclk()
111 ret = regmap_write(dev->regmap, 0x11, 0x08); in m88rs6000t_set_demod_mclk()
114 ret = regmap_write(dev->regmap, 0x15, reg15); in m88rs6000t_set_demod_mclk()
117 ret = regmap_write(dev->regmap, 0x16, reg16); in m88rs6000t_set_demod_mclk()
120 ret = regmap_write(dev->regmap, 0x1D, reg1D); in m88rs6000t_set_demod_mclk()
123 ret = regmap_write(dev->regmap, 0x1E, reg1E); in m88rs6000t_set_demod_mclk()
126 ret = regmap_write(dev->regmap, 0x1F, reg1F); in m88rs6000t_set_demod_mclk()
[all …]
/openbmc/linux/net/atm/
H A Dresources.c37 struct atm_dev *dev; in __alloc_atm_dev() local
39 dev = kzalloc(sizeof(*dev), GFP_KERNEL); in __alloc_atm_dev()
40 if (!dev) in __alloc_atm_dev()
42 dev->type = type; in __alloc_atm_dev()
43 dev->signal = ATM_PHY_SIG_UNKNOWN; in __alloc_atm_dev()
44 dev->link_rate = ATM_OC3_PCR; in __alloc_atm_dev()
45 spin_lock_init(&dev->lock); in __alloc_atm_dev()
46 INIT_LIST_HEAD(&dev->local); in __alloc_atm_dev()
47 INIT_LIST_HEAD(&dev->lecs); in __alloc_atm_dev()
49 return dev; in __alloc_atm_dev()
[all …]
/openbmc/linux/drivers/xen/xen-pciback/
H A Dpci_stub.c54 struct pci_dev *dev; member
70 static struct pcistub_device *pcistub_device_alloc(struct pci_dev *dev) in pcistub_device_alloc() argument
74 dev_dbg(&dev->dev, "pcistub_device_alloc\n"); in pcistub_device_alloc()
80 psdev->dev = pci_dev_get(dev); in pcistub_device_alloc()
81 if (!psdev->dev) { in pcistub_device_alloc()
96 struct pci_dev *dev; in pcistub_device_release() local
100 dev = psdev->dev; in pcistub_device_release()
101 dev_data = pci_get_drvdata(dev); in pcistub_device_release()
103 dev_dbg(&dev->dev, "pcistub_device_release\n"); in pcistub_device_release()
105 xen_unregister_device_domain_owner(dev); in pcistub_device_release()
[all …]
/openbmc/linux/drivers/net/wireless/mediatek/mt76/mt7915/
H A Dmmio.c414 static u32 mt7915_reg_map_l1(struct mt7915_dev *dev, u32 addr) in mt7915_reg_map_l1() argument
420 if (is_mt798x(&dev->mt76)) in mt7915_reg_map_l1()
423 l1_remap = is_mt7915(&dev->mt76) ? in mt7915_reg_map_l1()
426 dev->bus_ops->rmw(&dev->mt76, l1_remap, in mt7915_reg_map_l1()
430 dev->bus_ops->rr(&dev->mt76, l1_remap); in mt7915_reg_map_l1()
435 static u32 mt7915_reg_map_l2(struct mt7915_dev *dev, u32 addr) in mt7915_reg_map_l2() argument
439 if (is_mt7915(&dev->mt76)) { in mt7915_reg_map_l2()
443 dev->bus_ops->rmw(&dev->mt76, MT_HIF_REMAP_L2, in mt7915_reg_map_l2()
448 dev->bus_ops->rr(&dev->mt76, MT_HIF_REMAP_L2); in mt7915_reg_map_l2()
450 u32 ofs = is_mt798x(&dev->mt76) ? 0x400000 : 0; in mt7915_reg_map_l2()
[all …]

1...<<11121314151617181920>>...1030