Home
last modified time | relevance | path

Searched refs:ret1 (Results 1 – 25 of 53) sorted by relevance

123

/OK3568_Linux_fs/u-boot/board/compulab/cl-som-am57x/
H A Dcl-som-am57x.c43 int ret0, ret1; in board_mmc_init() local
49 ret1 = omap_mmc_init(1, 0, 0, -1, -1); in board_mmc_init()
50 if (ret1) in board_mmc_init()
53 return ret0 && ret1; in board_mmc_init()
/OK3568_Linux_fs/kernel/sound/soc/sof/intel/
H A Dhda-loader.c288 int ret, ret1; in hda_dsp_cl_boot_firmware_iccmax() local
315 ret1 = cl_cleanup(sdev, &sdev->dmab_bdl, iccmax_stream); in hda_dsp_cl_boot_firmware_iccmax()
316 if (ret1 < 0) { in hda_dsp_cl_boot_firmware_iccmax()
321 ret = ret1; in hda_dsp_cl_boot_firmware_iccmax()
338 int ret, ret1, i; in hda_dsp_cl_boot_firmware() local
422 ret1 = cl_cleanup(sdev, &sdev->dmab, stream); in hda_dsp_cl_boot_firmware()
423 if (ret1 < 0) { in hda_dsp_cl_boot_firmware()
428 ret = ret1; in hda_dsp_cl_boot_firmware()
/OK3568_Linux_fs/kernel/drivers/crypto/ux500/hash/
H A Dhash_core.c1388 int ret2, ret1; in ahash_sha1_digest() local
1390 ret1 = ahash_sha1_init(req); in ahash_sha1_digest()
1391 if (ret1) in ahash_sha1_digest()
1394 ret1 = ahash_update(req); in ahash_sha1_digest()
1398 return ret1 ? ret1 : ret2; in ahash_sha1_digest()
1403 int ret2, ret1; in ahash_sha256_digest() local
1405 ret1 = ahash_sha256_init(req); in ahash_sha256_digest()
1406 if (ret1) in ahash_sha256_digest()
1409 ret1 = ahash_update(req); in ahash_sha256_digest()
1413 return ret1 ? ret1 : ret2; in ahash_sha256_digest()
[all …]
/OK3568_Linux_fs/kernel/arch/alpha/kernel/
H A Dsrm_env.c95 unsigned long ret1, ret2; in srm_env_proc_write() local
109 ret1 = callback_setenv(id, buf, count); in srm_env_proc_write()
110 if ((ret1 >> 61) == 0) { in srm_env_proc_write()
114 res = (int) ret1; in srm_env_proc_write()
/OK3568_Linux_fs/u-boot/board/compulab/cm_t54/
H A Dcm_t54.c105 int ret0, ret1; in board_mmc_init() local
111 ret1 = omap_mmc_init(1, 0, 0, -1, -1); in board_mmc_init()
112 if (ret1) in board_mmc_init()
115 if (ret0 && ret1) in board_mmc_init()
/OK3568_Linux_fs/kernel/drivers/clk/sirf/
H A Dclk-common.c410 int ret1, ret2; in cpu_clk_set_rate() local
414 ret1 = clk_set_parent(hw->clk, clk_pll1.hw.clk); in cpu_clk_set_rate()
415 return ret1; in cpu_clk_set_rate()
419 ret1 = clk_set_parent(hw->clk, clk_pll2.hw.clk); in cpu_clk_set_rate()
420 return ret1; in cpu_clk_set_rate()
424 ret1 = clk_set_parent(hw->clk, clk_pll3.hw.clk); in cpu_clk_set_rate()
425 return ret1; in cpu_clk_set_rate()
432 ret1 = clk_set_parent(hw->clk, clk_pll2.hw.clk); in cpu_clk_set_rate()
433 BUG_ON(ret1); in cpu_clk_set_rate()
438 ret1 = clk_set_parent(hw->clk, clk_pll1.hw.clk); in cpu_clk_set_rate()
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/progs/
H A Dbpf_iter_test_kern4.c13 static volatile const __u32 ret1; variable
39 if (ret1) in dump_bpf_map()
/OK3568_Linux_fs/kernel/drivers/remoteproc/
H A Dti_k3_dsp_remoteproc.c596 int ret1; in k3_dsp_rproc_probe() local
703 ret1 = ti_sci_proc_release(kproc->tsp); in k3_dsp_rproc_probe()
704 if (ret1) in k3_dsp_rproc_probe()
705 dev_err(dev, "failed to release proc, ret = %d\n", ret1); in k3_dsp_rproc_probe()
709 ret1 = ti_sci_put_handle(kproc->ti_sci); in k3_dsp_rproc_probe()
710 if (ret1) in k3_dsp_rproc_probe()
711 dev_err(dev, "failed to put ti_sci handle, ret = %d\n", ret1); in k3_dsp_rproc_probe()
/OK3568_Linux_fs/kernel/net/sched/
H A Dact_ipt.c423 int ret1, ret2; in ipt_init_module() local
425 ret1 = tcf_register_action(&act_xt_ops, &xt_net_ops); in ipt_init_module()
426 if (ret1 < 0) in ipt_init_module()
433 if (ret1 < 0 && ret2 < 0) { in ipt_init_module()
434 return ret1; in ipt_init_module()
/OK3568_Linux_fs/kernel/drivers/cpufreq/
H A Dimx6q-cpufreq.c157 int ret1; in imx6q_set_target() local
160 ret1 = regulator_set_voltage_tol(arm_reg, volt_old, 0); in imx6q_set_target()
161 if (ret1) in imx6q_set_target()
163 "failed to restore vddarm voltage: %d\n", ret1); in imx6q_set_target()
/OK3568_Linux_fs/u-boot/drivers/mtd/nand/raw/
H A Dlpc32xx_nand_slc.c379 int ret1, ret2 = 0; in lpc32xx_correct_data() local
389 ret1 = nand_correct_data(mtd, dat + data_offset, r, c); in lpc32xx_correct_data()
390 if (ret1 < 0) in lpc32xx_correct_data()
393 ret2 += ret1; in lpc32xx_correct_data()
/OK3568_Linux_fs/kernel/sound/soc/codecs/
H A Dalc5632.c1105 int ret, ret1, ret2; in alc5632_i2c_probe() local
1122 ret1 = regmap_read(alc5632->regmap, ALC5632_VENDOR_ID1, &vid1); in alc5632_i2c_probe()
1124 if (ret1 != 0 || ret2 != 0) { in alc5632_i2c_probe()
1126 "Failed to read chip ID: ret1=%d, ret2=%d\n", ret1, ret2); in alc5632_i2c_probe()
/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dbpf_iter.c426 static void test_overflow(bool test_e2big_overflow, bool ret1) in test_overflow() argument
465 } else if (!ret1) { in test_overflow()
472 skel->rodata->ret1 = ret1; in test_overflow()
514 } else if (!ret1) { in test_overflow()
/OK3568_Linux_fs/kernel/arch/sparc/kernel/
H A Dhead_64.S179 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1
208 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1
227 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1
251 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1
354 stx %g0, [%sp + 2047 + 128 + 0x20] ! ret1
380 stx %g0, [%sp + 2047 + 128 + 0x38] ! ret1
/OK3568_Linux_fs/kernel/sound/soc/sh/
H A Dfsi.c585 int ret1, ret2; in fsi_stream_probe() local
588 ret1 = fsi_stream_handler_call(io, probe, fsi, io, dev); in fsi_stream_probe()
593 if (ret1 < 0) in fsi_stream_probe()
594 return ret1; in fsi_stream_probe()
604 int ret1, ret2; in fsi_stream_remove() local
607 ret1 = fsi_stream_handler_call(io, remove, fsi, io); in fsi_stream_remove()
612 if (ret1 < 0) in fsi_stream_remove()
613 return ret1; in fsi_stream_remove()
/OK3568_Linux_fs/u-boot/board/freescale/b4860qds/
H A Db4860qds.c751 int i, ret1, ret2; in check_serdes_pll_locks() local
755 ret1 = check_pll_locks(srds1_regs, i); in check_serdes_pll_locks()
756 if (ret1) { in check_serdes_pll_locks()
758 return ret1; in check_serdes_pll_locks()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/cdparanoia/files/
H A D0002-interface-remove-C-reserved-keyword.patch42 - int ret1=clock_gettime(d->private->clock,&tv1);
43 + int ret1=clock_gettime(d->priv->clock,&tv1);
47 if(ret1<0 || ret3<0){
160 - int ret1=clock_gettime(d->private->clock,&tv1);
161 + int ret1=clock_gettime(d->priv->clock,&tv1);
165 if(ret1<0 || ret3<0){
/OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx4/
H A Dport.c901 int ret1; in mlx4_unbond_mac_table() local
937 ret1 = mlx4_set_port_mac_table(dev, 2, t2->entries); in mlx4_unbond_mac_table()
938 if (ret1) { in mlx4_unbond_mac_table()
939 mlx4_warn(dev, "failed to unmirror MAC tables for port 2(%d)\n", ret1); in mlx4_unbond_mac_table()
940 ret = ret1; in mlx4_unbond_mac_table()
1008 int ret1; in mlx4_unbond_vlan_table() local
1044 ret1 = mlx4_set_port_vlan_table(dev, 2, t2->entries); in mlx4_unbond_vlan_table()
1045 if (ret1) { in mlx4_unbond_vlan_table()
1046 mlx4_warn(dev, "failed to unmirror VLAN tables for port 2(%d)\n", ret1); in mlx4_unbond_vlan_table()
1047 ret = ret1; in mlx4_unbond_vlan_table()
/OK3568_Linux_fs/kernel/arch/ia64/kernel/
H A Desi_stub.S88 .ret1: mov ar.rsc=0 // put RSE in enforced lazy, LE mode label
H A Defi_stub.S77 .ret1: mov ar.rsc=0 // put RSE in enforced lazy, LE mode label
/OK3568_Linux_fs/kernel/fs/gfs2/
H A Dfile.c755 int ret = 0, ret1 = 0; in gfs2_fsync() local
758 ret1 = filemap_fdatawrite_range(mapping, start, end); in gfs2_fsync()
759 if (ret1 == -EIO) in gfs2_fsync()
760 return ret1; in gfs2_fsync()
782 return ret ? ret : ret1; in gfs2_fsync()
/OK3568_Linux_fs/kernel/tools/perf/tests/
H A Dparse-events.c1905 int ret1, ret2 = 0; in test_events() local
1912 ret1 = test_event(e); in test_events()
1913 if (ret1) in test_events()
1914 ret2 = ret1; in test_events()
2031 int ret1, ret2 = 0; in test__parse_events() local
2035 ret1 = test_events(tests, ARRAY_SIZE(tests)); \ in test__parse_events()
2037 ret2 = ret1; \ in test__parse_events()
2051 ret1 = test_terms(test__terms, ARRAY_SIZE(test__terms)); in test__parse_events()
2053 ret2 = ret1; in test__parse_events()
/OK3568_Linux_fs/kernel/drivers/media/platform/qcom/venus/
H A Dhfi_venus.c943 int ret1, ret2; in venus_are_queues_empty() local
945 ret1 = venus_get_queue_size(hdev, IFACEQ_MSG_IDX); in venus_are_queues_empty()
946 if (ret1 < 0) in venus_are_queues_empty()
947 return ret1; in venus_are_queues_empty()
953 if (!ret1 && !ret2) in venus_are_queues_empty()
/OK3568_Linux_fs/kernel/sound/pci/ac97/
H A Dac97_patch.c2230 int ret1; in snd_ac97_ad1986_lososel_put() local
2240 ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL, in snd_ac97_ad1986_lososel_put()
2244 if (ret1 < 0) in snd_ac97_ad1986_lososel_put()
2245 return ret1; in snd_ac97_ad1986_lososel_put()
2247 return (ret0 > 0 || ret1 > 0) ? 1 : 0; in snd_ac97_ad1986_lososel_put()
2266 int ret1; in snd_ac97_ad1986_spread_put() local
2276 ret1 = snd_ac97_update_bits(ac97, AC97_AD_MISC, AC97_AD1986_SOSEL, in snd_ac97_ad1986_spread_put()
2280 if (ret1 < 0) in snd_ac97_ad1986_spread_put()
2281 return ret1; in snd_ac97_ad1986_spread_put()
2283 return (ret0 > 0 || ret1 > 0) ? 1 : 0; in snd_ac97_ad1986_spread_put()
/OK3568_Linux_fs/kernel/arch/s390/mm/
H A Dextmem.c134 unsigned long *ret1, unsigned long *ret2) in dcss_diag() argument
148 *ret1 = rx; in dcss_diag()

123