Home
last modified time | relevance | path

Searched refs:val (Results 5926 - 5950 of 21273) sorted by relevance

1...<<231232233234235236237238239240>>...851

/kernel/linux/linux-6.6/drivers/regulator/
H A Dmt6380-regulator.c186 int val = 0; in mt6380_regulator_set_mode() local
191 val = MT6380_REGULATOR_MODE_AUTO; in mt6380_regulator_set_mode()
194 val = MT6380_REGULATOR_MODE_FORCE_PWM; in mt6380_regulator_set_mode()
200 val <<= ffs(info->modeset_mask) - 1; in mt6380_regulator_set_mode()
203 info->modeset_mask, val); in mt6380_regulator_set_mode()
208 unsigned int val; in mt6380_regulator_get_mode() local
213 ret = regmap_read(rdev->regmap, info->modeset_reg, &val); in mt6380_regulator_get_mode()
217 val &= info->modeset_mask; in mt6380_regulator_get_mode()
218 val >>= ffs(info->modeset_mask) - 1; in mt6380_regulator_get_mode()
220 switch (val) { in mt6380_regulator_get_mode()
[all...]
H A Das3711-regulator.c32 u8 val; in as3711_set_mode_sd() local
36 val = fast_bit | low_noise_bit; in as3711_set_mode_sd()
39 val = low_noise_bit; in as3711_set_mode_sd()
42 val = 0; in as3711_set_mode_sd()
49 low_noise_bit | fast_bit, val); in as3711_set_mode_sd()
56 unsigned int val; in as3711_get_mode_sd() local
57 int ret = regmap_read(rdev->regmap, AS3711_SD_CONTROL_1, &val); in as3711_get_mode_sd()
62 if ((val & mask) == mask) in as3711_get_mode_sd()
65 if ((val & mask) == low_noise_bit) in as3711_get_mode_sd()
68 if (!(val in as3711_get_mode_sd()
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/omap2/omapfb/dss/
H A Dhdmi_wp.c68 int hdmi_wp_set_phy_pwr(struct hdmi_wp_data *wp, enum hdmi_phy_pwr val) in hdmi_wp_set_phy_pwr() argument
71 if (REG_GET(wp->base, HDMI_WP_PWR_CTRL, 5, 4) == val) in hdmi_wp_set_phy_pwr()
75 REG_FLD_MOD(wp->base, HDMI_WP_PWR_CTRL, val, 7, 6); in hdmi_wp_set_phy_pwr()
78 if (hdmi_wait_for_bit_change(wp->base, HDMI_WP_PWR_CTRL, 5, 4, val) in hdmi_wp_set_phy_pwr()
79 != val) { in hdmi_wp_set_phy_pwr()
80 DSSERR("Failed to set PHY power mode to %d\n", val); in hdmi_wp_set_phy_pwr()
88 int hdmi_wp_set_pll_pwr(struct hdmi_wp_data *wp, enum hdmi_pll_pwr val) in hdmi_wp_set_pll_pwr() argument
91 REG_FLD_MOD(wp->base, HDMI_WP_PWR_CTRL, val, 3, 2); in hdmi_wp_set_pll_pwr()
94 if (hdmi_wait_for_bit_change(wp->base, HDMI_WP_PWR_CTRL, 1, 0, val) in hdmi_wp_set_pll_pwr()
95 != val) { in hdmi_wp_set_pll_pwr()
[all...]
/kernel/linux/linux-6.6/drivers/base/regmap/
H A Dinternal.h37 unsigned int reg, unsigned int val);
39 void (*format_val)(void *buf, unsigned int val, unsigned int shift);
109 int (*reg_read)(void *context, unsigned int reg, unsigned int *val);
110 int (*reg_write)(void *context, unsigned int reg, unsigned int val);
112 unsigned int mask, unsigned int val);
205 unsigned int val);
264 unsigned int val);
276 unsigned int val);
278 int regcache_sync_val(struct regmap *map, unsigned int reg, unsigned int val);
281 const void *val, size_
[all...]
/kernel/linux/linux-6.6/drivers/gpio/
H A Dgpio-it87.c111 static inline void superio_outb(int val, int reg) in superio_outb() argument
114 outb(val, VAL); in superio_outb()
119 int val; in superio_inw() local
122 val = inb(VAL) << 8; in superio_inw()
124 val |= inb(VAL); in superio_inw()
125 return val; in superio_inw()
217 unsigned gpio_num, int val) in it87_gpio_set()
227 if (val) in it87_gpio_set()
234 unsigned gpio_num, int val) in it87_gpio_direction_out()
252 it87_gpio_set(chip, gpio_num, val); in it87_gpio_direction_out()
216 it87_gpio_set(struct gpio_chip *chip, unsigned gpio_num, int val) it87_gpio_set() argument
233 it87_gpio_direction_out(struct gpio_chip *chip, unsigned gpio_num, int val) it87_gpio_direction_out() argument
[all...]
H A Dgpio-ixp4xx.c95 u32 val; in ixp4xx_gpio_irq_set_type() local
139 val = __raw_readl(g->base + int_reg); in ixp4xx_gpio_irq_set_type()
140 val &= ~(IXP4XX_GPIO_STYLE_MASK << (line * IXP4XX_GPIO_STYLE_SIZE)); in ixp4xx_gpio_irq_set_type()
141 __raw_writel(val, g->base + int_reg); in ixp4xx_gpio_irq_set_type()
146 val = __raw_readl(g->base + int_reg); in ixp4xx_gpio_irq_set_type()
147 val |= (int_style << (line * IXP4XX_GPIO_STYLE_SIZE)); in ixp4xx_gpio_irq_set_type()
148 __raw_writel(val, g->base + int_reg); in ixp4xx_gpio_irq_set_type()
151 val = __raw_readl(g->base + IXP4XX_REG_GPOE); in ixp4xx_gpio_irq_set_type()
152 val |= BIT(d->hwirq); in ixp4xx_gpio_irq_set_type()
153 __raw_writel(val, in ixp4xx_gpio_irq_set_type()
[all...]
H A Dgpio-ts5500.c186 u8 val = inb(addr); in ts5500_set_mask() local
187 val |= mask; in ts5500_set_mask()
188 outb(val, addr); in ts5500_set_mask()
193 u8 val = inb(addr); in ts5500_clear_mask() local
194 val &= ~mask; in ts5500_clear_mask()
195 outb(val, addr); in ts5500_clear_mask()
225 static int ts5500_gpio_output(struct gpio_chip *chip, unsigned offset, int val) in ts5500_gpio_output() argument
238 if (val) in ts5500_gpio_output()
247 static void ts5500_gpio_set(struct gpio_chip *chip, unsigned offset, int val) in ts5500_gpio_set() argument
254 if (val) in ts5500_gpio_set()
[all...]
/kernel/linux/linux-6.6/drivers/clk/nuvoton/
H A Dclk-ma35d1-pll.c282 u32 val = readl_relaxed(pll->ctl1_base); in ma35d1_clk_pll_is_prepared() local
284 return !(val & PLL_CTL1_PD); in ma35d1_clk_pll_is_prepared()
290 u32 val; in ma35d1_clk_pll_prepare() local
292 val = readl_relaxed(pll->ctl1_base); in ma35d1_clk_pll_prepare()
293 val &= ~PLL_CTL1_PD; in ma35d1_clk_pll_prepare()
294 writel_relaxed(val, pll->ctl1_base); in ma35d1_clk_pll_prepare()
301 u32 val; in ma35d1_clk_pll_unprepare() local
303 val = readl_relaxed(pll->ctl1_base); in ma35d1_clk_pll_unprepare()
304 val |= PLL_CTL1_PD; in ma35d1_clk_pll_unprepare()
305 writel_relaxed(val, pl in ma35d1_clk_pll_unprepare()
[all...]
/kernel/linux/linux-6.6/drivers/crypto/
H A Dexynos-rng.c92 static void exynos_rng_writel(struct exynos_rng_dev *rng, u32 val, u32 offset) in exynos_rng_writel() argument
94 writel_relaxed(val, rng->mem + offset); in exynos_rng_writel()
100 u32 val; in exynos_rng_set_seed() local
112 val = seed[i] << 24; in exynos_rng_set_seed()
113 val |= seed[i + 1] << 16; in exynos_rng_set_seed()
114 val |= seed[i + 2] << 8; in exynos_rng_set_seed()
115 val |= seed[i + 3] << 0; in exynos_rng_set_seed()
117 exynos_rng_writel(rng, val, EXYNOS_RNG_SEED(seed_reg)); in exynos_rng_set_seed()
120 val = exynos_rng_readl(rng, EXYNOS_RNG_STATUS); in exynos_rng_set_seed()
121 if (!(val in exynos_rng_set_seed()
[all...]
/kernel/linux/linux-6.6/arch/x86/events/amd/
H A Dlbr.c62 static __always_inline void amd_pmu_lbr_set_from(unsigned int idx, u64 val) in amd_pmu_lbr_set_from() argument
64 wrmsrl(MSR_AMD_SAMP_BR_FROM + idx * 2, val); in amd_pmu_lbr_set_from()
67 static __always_inline void amd_pmu_lbr_set_to(unsigned int idx, u64 val) in amd_pmu_lbr_set_to() argument
69 wrmsrl(MSR_AMD_SAMP_BR_FROM + idx * 2 + 1, val); in amd_pmu_lbr_set_to()
74 u64 val; in amd_pmu_lbr_get_from() local
76 rdmsrl(MSR_AMD_SAMP_BR_FROM + idx * 2, val); in amd_pmu_lbr_get_from()
78 return val; in amd_pmu_lbr_get_from()
83 u64 val; in amd_pmu_lbr_get_to() local
85 rdmsrl(MSR_AMD_SAMP_BR_FROM + idx * 2 + 1, val); in amd_pmu_lbr_get_to()
87 return val; in amd_pmu_lbr_get_to()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/ath/wil6210/
H A Dtxrx_edma.h390 u16 val = wil_rx_status_get_flow_id(msg); in wil_rx_status_get_cid() local
392 if (val & WIL_RX_EDMA_DLPF_LU_MISS_BIT) in wil_rx_status_get_cid()
394 return (val >> WIL_RX_EDMA_DLPF_LU_MISS_CID_POS) & in wil_rx_status_get_cid()
398 return (val >> WIL_RX_EDMA_DLPF_LU_HIT_CID_POS) & in wil_rx_status_get_cid()
404 u16 val = wil_rx_status_get_flow_id(msg); in wil_rx_status_get_tid() local
406 if (val & WIL_RX_EDMA_DLPF_LU_MISS_BIT) in wil_rx_status_get_tid()
408 return (val >> WIL_RX_EDMA_DLPF_LU_MISS_TID_POS) & in wil_rx_status_get_tid()
412 return val & WIL_RX_EDMA_DLPF_LU_MISS_CID_TID_MASK; in wil_rx_status_get_tid()
434 u8 val = WIL_GET_BITS(((struct wil_rx_status_compressed *)msg)->d1, in wil_rx_status_get_data_offset() local
437 switch (val) { in wil_rx_status_get_data_offset()
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/intel/iwlwifi/
H A Diwl-prph.h430 #define REG_CRF_ID_TYPE(val) (((val) & 0x00000FFF) >> 0)
431 #define REG_CRF_ID_SLAVE(val) (((val) & 0x00080000) >> 19)
432 #define REG_CRF_ID_DASH(val) (((val) & 0x00F00000) >> 20)
433 #define REG_CRF_ID_STEP(val) (((val) & 0x07000000) >> 24)
434 #define REG_CRF_ID_FLAVOR(val) (((val)
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/mt7921/
H A Dmt7921.h221 mt7921_l1_wr(struct mt792x_dev *dev, u32 addr, u32 val) in mt7921_l1_wr() argument
223 mt76_wr(dev, mt7921_reg_map_l1(dev, addr), val); in mt7921_l1_wr()
227 mt7921_l1_rmw(struct mt792x_dev *dev, u32 addr, u32 mask, u32 val) in mt7921_l1_rmw() argument
229 val |= mt7921_l1_rr(dev, addr) & ~mask; in mt7921_l1_rmw()
230 mt7921_l1_wr(dev, addr, val); in mt7921_l1_rmw()
232 return val; in mt7921_l1_rmw()
235 #define mt7921_l1_set(dev, addr, val) mt7921_l1_rmw(dev, addr, 0, val)
236 #define mt7921_l1_clear(dev, addr, val) mt7921_l1_rmw(dev, addr, val,
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/omapdrm/dss/
H A Dhdmi_wp.c67 int hdmi_wp_set_phy_pwr(struct hdmi_wp_data *wp, enum hdmi_phy_pwr val) in hdmi_wp_set_phy_pwr() argument
70 if (REG_GET(wp->base, HDMI_WP_PWR_CTRL, 5, 4) == val) in hdmi_wp_set_phy_pwr()
74 REG_FLD_MOD(wp->base, HDMI_WP_PWR_CTRL, val, 7, 6); in hdmi_wp_set_phy_pwr()
77 if (hdmi_wait_for_bit_change(wp->base, HDMI_WP_PWR_CTRL, 5, 4, val) in hdmi_wp_set_phy_pwr()
78 != val) { in hdmi_wp_set_phy_pwr()
79 DSSERR("Failed to set PHY power mode to %d\n", val); in hdmi_wp_set_phy_pwr()
87 int hdmi_wp_set_pll_pwr(struct hdmi_wp_data *wp, enum hdmi_pll_pwr val) in hdmi_wp_set_pll_pwr() argument
90 REG_FLD_MOD(wp->base, HDMI_WP_PWR_CTRL, val, 3, 2); in hdmi_wp_set_pll_pwr()
93 if (hdmi_wait_for_bit_change(wp->base, HDMI_WP_PWR_CTRL, 1, 0, val) in hdmi_wp_set_pll_pwr()
94 != val) { in hdmi_wp_set_pll_pwr()
[all...]
/kernel/linux/linux-6.6/drivers/iio/accel/
H A Dadxl313_core.c253 int *val, int *val2, long mask) in adxl313_read_raw()
265 *val = sign_extend32(ret, chan->scan_type.realbits - 1); in adxl313_read_raw()
268 *val = 0; in adxl313_read_raw()
283 *val = sign_extend32(regval, 7) * 4; in adxl313_read_raw()
291 *val = adxl313_odr_freqs[ret][0]; in adxl313_read_raw()
301 int val, int val2, long mask) in adxl313_write_raw()
311 if (clamp_val(val, -128 * 4, 127 * 4) != val) in adxl313_write_raw()
316 val / 4); in adxl313_write_raw()
318 return adxl313_set_odr(data, val, val in adxl313_write_raw()
251 adxl313_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int *val, int *val2, long mask) adxl313_read_raw() argument
299 adxl313_write_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int val, int val2, long mask) adxl313_write_raw() argument
[all...]
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-parport.c34 u8 val; member
199 port_write[op->port](data, oldval | op->val); in line_set()
201 port_write[op->port](data, oldval & ~op->val); in line_set()
209 return ((op->inverted && (oldval & op->val) != op->val) in line_get()
210 || (!op->inverted && (oldval & op->val) == op->val)); in line_get()
315 if (!adapter_parm[type].getscl.val) { in i2c_parport_attach()
333 if (adapter_parm[type].init.val) { in i2c_parport_attach()
387 if (adapter_parm[type].init.val) in i2c_parport_detach()
[all...]
/kernel/linux/linux-6.6/drivers/iio/adc/
H A Dmax9611.c290 int *val, int *val2, long mask) in max9611_read_raw()
308 *val = MAX9611_TEMP_RAW(adc_data); in max9611_read_raw()
317 *val = MAX9611_VOLTAGE_RAW(adc_data); in max9611_read_raw()
325 *val = MAX9611_CIM_OFFSET_RAW; in max9611_read_raw()
333 *val = MAX9611_TEMP_SCALE_NUM; in max9611_read_raw()
339 *val = MAX9611_CIM_LSB_mV; in max9611_read_raw()
364 *val = MAX9611_VOLTAGE_RAW(adc_data) * in max9611_read_raw()
380 *val = MAX9611_VOLTAGE_RAW(adc_data) * in max9611_read_raw()
397 *val = MAX9611_VOLTAGE_RAW(adc_data) * in max9611_read_raw()
409 *val * in max9611_read_raw()
288 max9611_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int *val, int *val2, long mask) max9611_read_raw() argument
[all...]
/kernel/linux/linux-6.6/drivers/iio/orientation/
H A Dhid-sensor-incl-3d.c102 int *val, int *val2, in incl_3d_read_raw()
111 *val = 0; in incl_3d_read_raw()
120 *val = sensor_hub_input_attr_get_raw_value( in incl_3d_read_raw()
135 *val = incl_state->scale_pre_decml; in incl_3d_read_raw()
140 *val = incl_state->value_offset; in incl_3d_read_raw()
145 &incl_state->common_attributes, val, val2); in incl_3d_read_raw()
149 &incl_state->common_attributes, val, val2); in incl_3d_read_raw()
162 int val, in incl_3d_write_raw()
172 &incl_state->common_attributes, val, val2); in incl_3d_write_raw()
176 &incl_state->common_attributes, val, val in incl_3d_write_raw()
100 incl_3d_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int *val, int *val2, long mask) incl_3d_read_raw() argument
160 incl_3d_write_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int val, int val2, long mask) incl_3d_write_raw() argument
[all...]
/kernel/linux/linux-6.6/drivers/irqchip/
H A Dirq-mbigen.c119 u32 mask, addr, val; in mbigen_set_type() local
126 val = readl_relaxed(base + addr); in mbigen_set_type()
129 val |= mask; in mbigen_set_type()
131 val &= ~mask; in mbigen_set_type()
133 writel_relaxed(val, base + addr); in mbigen_set_type()
151 u32 val; in mbigen_write_msg() local
157 val = readl_relaxed(base); in mbigen_write_msg()
159 val &= ~(IRQ_EVENT_ID_MASK << IRQ_EVENT_ID_SHIFT); in mbigen_write_msg()
160 val |= (msg->data << IRQ_EVENT_ID_SHIFT); in mbigen_write_msg()
165 writel_relaxed(val, bas in mbigen_write_msg()
[all...]
/kernel/linux/linux-6.6/drivers/input/misc/
H A Daxp20x-pek.c93 unsigned int val; in axp20x_show_attr() local
96 ret = regmap_read(axp20x_pek->axp20x->regmap, AXP20X_PEK_KEY, &val); in axp20x_show_attr()
100 val &= mask; in axp20x_show_attr()
101 val >>= ffs(mask) - 1; in axp20x_show_attr()
104 if (val == time[i].idx) in axp20x_show_attr()
105 val = time[i].time; in axp20x_show_attr()
107 return sprintf(buf, "%u\n", val); in axp20x_show_attr()
139 unsigned int val, idx = 0; in axp20x_store_attr() local
149 ret = kstrtouint(val_str, 10, &val); in axp20x_store_attr()
156 err = abs(time[i].time - val); in axp20x_store_attr()
[all...]
/kernel/linux/linux-6.6/drivers/iommu/arm/arm-smmu/
H A Darm-smmu-nvidia.c64 int page, int offset, u32 val) in nvidia_smmu_write_reg()
72 writel_relaxed(val, reg); in nvidia_smmu_write_reg()
85 int page, int offset, u64 val) in nvidia_smmu_write_reg64()
93 writeq_relaxed(val, reg); in nvidia_smmu_write_reg64()
109 u32 val = 0; in nvidia_smmu_tlb_sync() local
116 val |= readl_relaxed(reg); in nvidia_smmu_tlb_sync()
119 if (!(val & ARM_SMMU_sTLBGSTATUS_GSACTIVE)) in nvidia_smmu_tlb_sync()
138 u32 val; in nvidia_smmu_reset() local
143 val = readl_relaxed(reg); in nvidia_smmu_reset()
144 writel_relaxed(val, re in nvidia_smmu_reset()
63 nvidia_smmu_write_reg(struct arm_smmu_device *smmu, int page, int offset, u32 val) nvidia_smmu_write_reg() argument
84 nvidia_smmu_write_reg64(struct arm_smmu_device *smmu, int page, int offset, u64 val) nvidia_smmu_write_reg64() argument
[all...]
/kernel/linux/linux-6.6/tools/perf/tests/
H A Dexpr.c61 double val; in test() local
63 if (expr__parse(&val, ctx, e)) in test()
65 TEST_ASSERT_VAL("unexpected value", val == val2); in test()
73 double val, num_cpus_online, num_cpus, num_cores, num_dies, num_packages; in test__expr() local
122 ret = expr__parse(&val, ctx, p); in test__expr()
124 TEST_ASSERT_VAL("division by zero", isnan(val)); in test__expr()
127 ret = expr__parse(&val, ctx, p); in test__expr()
243 TEST_ASSERT_VAL("#system_tsc_freq", expr__parse(&val, ctx, "#system_tsc_freq") == 0); in test__expr()
245 TEST_ASSERT_VAL("#system_tsc_freq > 0", val > 0); in test__expr()
247 TEST_ASSERT_VAL("#system_tsc_freq == 0", fpclassify(val) in test__expr()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/mm/
H A Dhugetlb-read-hwpoison.c55 static bool verify_chunk(char *buf, size_t len, char val) in verify_chunk() argument
60 if (buf[i] != val) { in verify_chunk()
62 i, buf[i], val); in verify_chunk()
76 char val = offset / wr_chunk_size + offset % wr_chunk_size; in seek_read_hugepage_filemap() local
78 printf(PREFIX PREFIX "init val=%u with offset=0x%lx\n", val, offset); in seek_read_hugepage_filemap()
95 ++val; in seek_read_hugepage_filemap()
96 if (!verify_chunk(buf, ret_count, val)) in seek_read_hugepage_filemap()
113 char val = 0; in read_hugepage_filemap() local
126 ++val; in read_hugepage_filemap()
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A Djson_writer.c204 void jsonw_bool(json_writer_t *self, bool val) in jsonw_bool() argument
206 jsonw_printf(self, "%s", val ? "true" : "false"); in jsonw_bool()
247 void jsonw_string_field(json_writer_t *self, const char *prop, const char *val) in jsonw_string_field() argument
250 jsonw_string(self, val); in jsonw_string_field()
253 void jsonw_bool_field(json_writer_t *self, const char *prop, bool val) in jsonw_bool_field() argument
256 jsonw_bool(self, val); in jsonw_bool_field()
260 void jsonw_float_field(json_writer_t *self, const char *prop, double val) in jsonw_float_field() argument
263 jsonw_float(self, val); in jsonw_float_field()
270 double val) in jsonw_float_field_fmt()
273 jsonw_float_fmt(self, fmt, val); in jsonw_float_field_fmt()
267 jsonw_float_field_fmt(json_writer_t *self, const char *prop, const char *fmt, double val) jsonw_float_field_fmt() argument
[all...]
/kernel/linux/linux-6.6/sound/pci/cs5535audio/
H A Dcs5535audio.c82 unsigned int val; in snd_cs5535audio_codec_read() local
93 val = cs_readl(cs5535au, ACC_CODEC_STATUS); in snd_cs5535audio_codec_read()
94 if ((val & STS_NEW) && reg == (val >> 24)) in snd_cs5535audio_codec_read()
101 reg, val); in snd_cs5535audio_codec_read()
103 return (unsigned short) val; in snd_cs5535audio_codec_read()
107 unsigned short reg, unsigned short val) in snd_cs5535audio_codec_write()
112 regdata |= val; in snd_cs5535audio_codec_write()
122 unsigned short reg, unsigned short val) in snd_cs5535audio_ac97_codec_write()
125 snd_cs5535audio_codec_write(cs5535au, reg, val); in snd_cs5535audio_ac97_codec_write()
106 snd_cs5535audio_codec_write(struct cs5535audio *cs5535au, unsigned short reg, unsigned short val) snd_cs5535audio_codec_write() argument
121 snd_cs5535audio_ac97_codec_write(struct snd_ac97 *ac97, unsigned short reg, unsigned short val) snd_cs5535audio_ac97_codec_write() argument
[all...]

Completed in 20 milliseconds

1...<<231232233234235236237238239240>>...851