Home
last modified time | relevance | path

Searched refs:retval (Results 1 – 25 of 1436) sorted by relevance

12345678910>>...58

/linux/arch/parisc/kernel/
H A Dfirmware.c227 int retval; in pdc_add_valid() local
231 retval = mem_pdc_call(PDC_ADD_VALID, PDC_ADD_VALID_VERIFY, address); in pdc_add_valid()
234 return retval; in pdc_add_valid()
246 int retval; in pdc_instr() local
250 retval = mem_pdc_call(PDC_INSTR, 0UL, __pa(pdc_result)); in pdc_instr()
255 return retval; in pdc_instr()
268 int retval; in pdc_chassis_info() local
274 retval = mem_pdc_call(PDC_CHASSIS, PDC_RETURN_CHASSIS_INFO, in pdc_chassis_info()
280 return retval; in pdc_chassis_info()
293 int retval = 0; in pdc_pat_chassis_send_log() local
[all …]
/linux/drivers/staging/gpib/common/
H A Dgpib_os.c191 int retval; in push_status_byte() local
197 retval = pop_status_byte(board, device, &lost_byte); in push_status_byte()
198 if (retval < 0) in push_status_byte()
199 return retval; in push_status_byte()
280 int retval; in autopoll_all_devices() local
291 retval = serial_poll_all(board, serial_timeout); in autopoll_all_devices()
292 if (retval < 0) { in autopoll_all_devices()
295 return retval; in autopoll_all_devices()
307 return retval; in autopoll_all_devices()
416 int retval, cleanup_retval; in serial_poll_single() local
[all …]
H A Diblib.c27 int retval; in ibcac() local
41 retval = -ETIMEDOUT; in ibcac()
43 retval = board->interface->take_control(board, sync); in ibcac()
45 if (retval < 0 && fallback_to_async) { in ibcac()
46 if (sync && retval == -ETIMEDOUT) in ibcac()
47 retval = board->interface->take_control(board, 0); in ibcac()
51 return retval; in ibcac()
139 int retval; in ibgts() local
144 retval = board->interface->go_to_standby(board); /* go to standby */ in ibgts()
148 return retval; in ibgts()
[all …]
/linux/drivers/hid/
H A Dhid-roccat-arvo.c34 int retval; in arvo_sysfs_show_mode_key() local
37 retval = roccat_common2_receive(usb_dev, ARVO_COMMAND_MODE_KEY, in arvo_sysfs_show_mode_key()
40 if (retval) in arvo_sysfs_show_mode_key()
41 return retval; in arvo_sysfs_show_mode_key()
55 int retval; in arvo_sysfs_set_mode_key() local
57 retval = kstrtoul(buf, 10, &state); in arvo_sysfs_set_mode_key()
58 if (retval) in arvo_sysfs_set_mode_key()
59 return retval; in arvo_sysfs_set_mode_key()
65 retval = roccat_common2_send(usb_dev, ARVO_COMMAND_MODE_KEY, in arvo_sysfs_set_mode_key()
68 if (retval) in arvo_sysfs_set_mode_key()
[all …]
H A Dhid-roccat-kone.c110 int retval; in kone_check_write() local
120 retval = kone_receive(usb_dev, in kone_check_write()
122 if (retval) in kone_check_write()
123 return retval; in kone_check_write()
160 int retval; in kone_set_settings() local
162 retval = kone_send(usb_dev, kone_command_settings, in kone_set_settings()
164 if (retval) in kone_set_settings()
165 return retval; in kone_set_settings()
232 int retval; in kone_get_weight() local
235 retval = kone_receive(usb_dev, kone_command_weight, &data, 1); in kone_get_weight()
[all …]
H A Dhid-roccat-kovaplus.c46 int retval; in kovaplus_send_control() local
58 retval = roccat_common2_send(usb_dev, ROCCAT_COMMON_COMMAND_CONTROL, in kovaplus_send_control()
61 return retval; in kovaplus_send_control()
73 int retval; in kovaplus_get_profile_settings() local
75 retval = kovaplus_select_profile(usb_dev, number, in kovaplus_get_profile_settings()
77 if (retval) in kovaplus_get_profile_settings()
78 return retval; in kovaplus_get_profile_settings()
87 int retval; in kovaplus_get_profile_buttons() local
89 retval = kovaplus_select_profile(usb_dev, number, in kovaplus_get_profile_buttons()
91 if (retval) in kovaplus_get_profile_buttons()
[all …]
/linux/drivers/media/usb/gspca/
H A Djl2005bcd.c76 int retval; in jl2005c_write2() local
79 retval = usb_bulk_msg(gspca_dev->dev, in jl2005c_write2()
82 if (retval < 0) in jl2005c_write2()
84 gspca_dev->usb_buf[0], retval); in jl2005c_write2()
85 return retval; in jl2005c_write2()
91 int retval; in jl2005c_read1() local
93 retval = usb_bulk_msg(gspca_dev->dev, in jl2005c_read1()
96 if (retval < 0) in jl2005c_read1()
98 gspca_dev->usb_buf[0], retval); in jl2005c_read1()
99 return retval; in jl2005c_read1()
[all …]
/linux/tools/tracing/rtla/src/
H A Dosnoise.c56 int retval; in osnoise_set_cpus() local
69 retval = tracefs_instance_file_write(NULL, "osnoise/cpus", buffer); in osnoise_set_cpus()
70 if (retval < 0) { in osnoise_set_cpus()
88 int retval; in osnoise_restore_cpus() local
102 retval = tracefs_instance_file_write(NULL, "osnoise/cpus", context->orig_cpus); in osnoise_restore_cpus()
103 if (retval < 0) in osnoise_restore_cpus()
132 long long retval; in osnoise_read_ll_config() local
140 retval = get_llong_from_str(buffer); in osnoise_read_ll_config()
142 debug_msg("reading %s returned %lld\n", rel_path, retval); in osnoise_read_ll_config()
146 return retval; in osnoise_read_ll_config()
[all …]
/linux/tools/testing/selftests/bpf/progs/
H A Dtest_check_mtu.c35 int retval = XDP_PASS; /* Expected retval on successful test */ in xdp_use_helper() local
46 retval = XDP_ABORTED; in xdp_use_helper()
51 retval = XDP_DROP; in xdp_use_helper()
55 return retval; in xdp_use_helper()
65 int retval = XDP_ABORTED; /* Fail */ in xdp_exceed_mtu() local
75 retval = XDP_PASS; /* Success in exceeding MTU check */ in xdp_exceed_mtu()
77 retval = XDP_DROP; in xdp_exceed_mtu()
81 return retval; in xdp_exceed_mtu()
87 int retval = XDP_PASS; /* Expected retval on successful test */ in xdp_minus_delta() local
102 retval = XDP_ABORTED; in xdp_minus_delta()
[all …]
/linux/net/sctp/
H A Dsm_make_chunk.c208 struct sctp_chunk *retval = NULL; in sctp_make_init() local
311 retval = sctp_make_control(asoc, SCTP_CID_INIT, 0, chunksize, gfp); in sctp_make_init()
312 if (!retval) in sctp_make_init()
315 retval->subh.init_hdr = in sctp_make_init()
316 sctp_addto_chunk(retval, sizeof(init), &init); in sctp_make_init()
317 retval->param_hdr.v = in sctp_make_init()
318 sctp_addto_chunk(retval, addrs_len, addrs.v); in sctp_make_init()
329 sctp_addto_chunk(retval, sizeof(sat), &sat); in sctp_make_init()
330 sctp_addto_chunk(retval, num_types * sizeof(__u16), &types); in sctp_make_init()
333 sctp_addto_chunk(retval, sizeof(ecap_param), &ecap_param); in sctp_make_init()
[all …]
/linux/sound/spi/
H A Dat73c213.c91 int retval; in snd_at73c213_write_reg() local
102 retval = spi_sync(chip->spi, &msg); in snd_at73c213_write_reg()
104 if (!retval) in snd_at73c213_write_reg()
107 return retval; in snd_at73c213_write_reg()
327 int retval; in snd_at73c213_pcm_new() local
329 retval = snd_pcm_new(chip->card, chip->card->shortname, in snd_at73c213_pcm_new()
331 if (retval < 0) in snd_at73c213_pcm_new()
345 return retval; in snd_at73c213_pcm_new()
356 int retval = IRQ_NONE; in snd_at73c213_interrupt() local
376 retval = IRQ_HANDLED; in snd_at73c213_interrupt()
[all …]
/linux/drivers/staging/gpib/ni_usb/
H A Dni_usb_gpib.c110 int retval; in ni_usb_nonblocking_send_bulk_msg() local
139 retval = usb_submit_urb(ni_priv->bulk_urb, GFP_KERNEL); in ni_usb_nonblocking_send_bulk_msg()
140 if (retval) { in ni_usb_nonblocking_send_bulk_msg()
145 retval); in ni_usb_nonblocking_send_bulk_msg()
147 return retval; in ni_usb_nonblocking_send_bulk_msg()
154 retval = -ETIMEDOUT; in ni_usb_nonblocking_send_bulk_msg()
156 retval = ni_priv->bulk_urb->status; in ni_usb_nonblocking_send_bulk_msg()
165 return retval; in ni_usb_nonblocking_send_bulk_msg()
171 int retval; in ni_usb_send_bulk_msg() local
174 retval = ni_usb_nonblocking_send_bulk_msg(ni_priv, data, data_length, actual_data_length, in ni_usb_send_bulk_msg()
[all …]
/linux/drivers/staging/gpib/agilent_82357a/
H A Dagilent_82357a.c55 int retval; in agilent_82357a_send_bulk_msg() local
60 retval = mutex_lock_interruptible(&a_priv->bulk_alloc_lock); in agilent_82357a_send_bulk_msg()
61 if (retval) in agilent_82357a_send_bulk_msg()
62 return retval; in agilent_82357a_send_bulk_msg()
86 retval = usb_submit_urb(a_priv->bulk_urb, GFP_KERNEL); in agilent_82357a_send_bulk_msg()
87 if (retval) { in agilent_82357a_send_bulk_msg()
88 dev_err(&usb_dev->dev, "failed to submit bulk out urb, retval=%i\n", retval); in agilent_82357a_send_bulk_msg()
94 retval = -ERESTARTSYS; in agilent_82357a_send_bulk_msg()
98 retval = -ETIMEDOUT; in agilent_82357a_send_bulk_msg()
100 retval = a_priv->bulk_urb->status; in agilent_82357a_send_bulk_msg()
[all …]
/linux/fs/ext4/
H A Dmigrate.c25 int retval = 0, needed; in finish_range() local
39 retval = PTR_ERR(path); in finish_range()
52 retval = ext4_datasem_ensure_credits(handle, inode, needed, needed, 0); in finish_range()
53 if (retval < 0) in finish_range()
57 retval = PTR_ERR(path); in finish_range()
62 return retval; in finish_range()
68 int retval; in update_extent_range() local
83 retval = finish_range(handle, inode, lb); in update_extent_range()
87 return retval; in update_extent_range()
96 int i, retval = 0; in update_ind_extent_range() local
[all …]
/linux/drivers/usb/misc/
H A Dusbtest.c466 int retval = 0; in simple_io() local
470 while (retval == 0 && iterations-- > 0) { in simple_io()
476 retval = usb_submit_urb(urb, GFP_KERNEL); in simple_io()
477 if (retval != 0) in simple_io()
483 retval = (urb->status == -ENOENT ? in simple_io()
486 retval = urb->status; in simple_io()
490 if (retval == 0 && usb_pipein(urb->pipe)) in simple_io()
491 retval = simple_check_buf(tdev, urb); in simple_io()
507 if (expected != retval) in simple_io()
510 label, iterations, retval, expected); in simple_io()
[all …]
H A Dcytherm.c82 int retval; in brightness_store() local
96 retval = vendor_command(cytherm->udev, WRITE_RAM, BRIGHTNESS, in brightness_store()
98 if (retval) in brightness_store()
99 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval); in brightness_store()
101 retval = vendor_command(cytherm->udev, WRITE_RAM, BRIGHTNESS_SEM, in brightness_store()
103 if (retval) in brightness_store()
104 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval); in brightness_store()
122 int retval; in temp_show() local
132 retval = vendor_command(cytherm->udev, READ_RAM, TEMP, 0, buffer, 8); in temp_show()
133 if (retval) in temp_show()
[all …]
/linux/tools/testing/selftests/mincore/
H A Dmincore_selftest.c32 int retval; in TEST() local
40 retval = mincore(0, 0, vec); in TEST()
41 EXPECT_EQ(0, retval); in TEST()
45 retval = mincore(NULL, page_size, vec); in TEST()
46 EXPECT_EQ(-1, retval); in TEST()
58 retval = mincore(addr + 1, page_size, vec); in TEST()
59 EXPECT_EQ(-1, retval); in TEST()
64 retval = mincore(addr, -1, vec); in TEST()
65 EXPECT_EQ(-1, retval); in TEST()
70 retval = mincore(addr, page_size, NULL); in TEST()
[all …]
/linux/drivers/rtc/
H A Dsysfs.c35 ssize_t retval; in date_show() local
38 retval = rtc_read_time(to_rtc_device(dev), &tm); in date_show()
39 if (retval) in date_show()
40 return retval; in date_show()
49 ssize_t retval; in time_show() local
52 retval = rtc_read_time(to_rtc_device(dev), &tm); in time_show()
53 if (retval) in time_show()
54 return retval; in time_show()
63 ssize_t retval; in since_epoch_show() local
66 retval = rtc_read_time(to_rtc_device(dev), &tm); in since_epoch_show()
[all …]
H A Drtc-ab8500.c64 int retval, i; in ab8500_rtc_read_time() local
70 retval = abx500_set_register_interruptible(dev, in ab8500_rtc_read_time()
72 if (retval < 0) in ab8500_rtc_read_time()
73 return retval; in ab8500_rtc_read_time()
77 retval = abx500_get_register_interruptible(dev, in ab8500_rtc_read_time()
79 if (retval < 0) in ab8500_rtc_read_time()
80 return retval; in ab8500_rtc_read_time()
90 retval = abx500_get_register_interruptible(dev, in ab8500_rtc_read_time()
92 if (retval < 0) in ab8500_rtc_read_time()
93 return retval; in ab8500_rtc_read_time()
[all …]
/linux/drivers/media/radio/si470x/
H A Dradio-si470x-common.c195 int retval; in si470x_set_chan() local
199 retval = radio->get_register(radio, POWERCFG); in si470x_set_chan()
200 if (retval) in si470x_set_chan()
201 return retval; in si470x_set_chan()
211 retval = radio->set_register(radio, CHANNEL); in si470x_set_chan()
212 if (retval < 0) in si470x_set_chan()
230 retval = radio->set_register(radio, CHANNEL); in si470x_set_chan()
233 return retval; in si470x_set_chan()
261 int chan, retval; in si470x_get_freq() local
264 retval = radio->get_register(radio, READCHAN); in si470x_get_freq()
[all …]
/linux/drivers/pci/hotplug/
H A Dpci_hotplug_core.c44 int retval = 0; \
46 retval = ops->get_##name(slot, value); \
47 return retval; \
57 int retval; in GET_STATUS() local
60 retval = get_power_status(pci_slot->hotplug, &value); in GET_STATUS()
61 if (retval) in GET_STATUS()
62 return retval; in GET_STATUS()
73 int retval = 0; in power_write_file() local
82 retval = slot->ops->disable_slot(slot); in power_write_file()
87 retval = slot->ops->enable_slot(slot); in power_write_file()
[all …]
/linux/drivers/input/rmi4/
H A Drmi_driver.c64 int retval = 0; in reset_one_function() local
71 retval = fh->reset(fn); in reset_one_function()
72 if (retval < 0) in reset_one_function()
74 retval); in reset_one_function()
77 return retval; in reset_one_function()
83 int retval = 0; in configure_one_function() local
90 retval = fh->config(fn); in configure_one_function()
91 if (retval < 0) in configure_one_function()
93 retval); in configure_one_function()
96 return retval; in configure_one_function()
[all …]
/linux/fs/9p/
H A Dacl.c63 int retval; in __v9fs_get_acl() local
70 retval = PTR_ERR(acl); in __v9fs_get_acl()
71 if (retval == -ENODATA || retval == -ENOSYS || retval == -EOPNOTSUPP) in __v9fs_get_acl()
80 int retval = 0; in v9fs_get_acl() local
99 retval = -EIO; in v9fs_get_acl()
107 return retval; in v9fs_get_acl()
157 int retval; in v9fs_iop_set_acl() local
165 retval = posix_acl_valid(inode->i_sb->s_user_ns, acl); in v9fs_iop_set_acl()
166 if (retval) in v9fs_iop_set_acl()
173 retval = -ENOMEM; in v9fs_iop_set_acl()
[all …]
/linux/drivers/net/usb/
H A Dipheth.c236 int retval = -EINVAL; in ipheth_rcvbulk_callback_ncm() local
243 return retval; in ipheth_rcvbulk_callback_ncm()
271 return retval; in ipheth_rcvbulk_callback_ncm()
276 retval = ipheth_consume_skb(buf, dg_len, dev); in ipheth_rcvbulk_callback_ncm()
277 if (retval != 0) in ipheth_rcvbulk_callback_ncm()
278 return retval; in ipheth_rcvbulk_callback_ncm()
283 return retval; in ipheth_rcvbulk_callback_ncm()
289 int retval, status; in ipheth_rcvbulk_callback() local
328 retval = dev->rcvbulk_callback(urb); in ipheth_rcvbulk_callback()
329 if (retval != 0) { in ipheth_rcvbulk_callback()
[all …]
/linux/tools/testing/selftests/bpf/verifier/
H A Djmp32.c20 { .retval = 0,
23 { .retval = 2,
26 { .retval = 2,
52 { .retval = 0,
55 { .retval = 2,
58 { .retval = 2,
77 .retval = 2,
107 { .retval = 0,
110 { .retval = 2,
131 { .retval = 0,
[all …]

12345678910>>...58