| /linux/drivers/video/fbdev/ |
| H A D | grvga.c | 276 screendata->pixclock = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 280 screendata->xres = screendata->xres_virtual = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 284 screendata->right_margin = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 288 screendata->hsync_len = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 292 screendata->left_margin = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 296 screendata->yres = screendata->yres_virtual = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 300 screendata->lower_margin = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 304 screendata->vsync_len = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 308 screendata->upper_margin = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() 312 screendata->bits_per_pixel = simple_strtoul(this_opt, NULL, 0); in grvga_parse_custom() [all …]
|
| H A D | acornfb.c | 765 fb_info.monspecs.hfmin = simple_strtoul(p, &p, 0); in acornfb_parse_mon() 767 fb_info.monspecs.hfmax = simple_strtoul(p + 1, &p, 0); in acornfb_parse_mon() 774 fb_info.monspecs.vfmin = simple_strtoul(p + 1, &p, 0); in acornfb_parse_mon() 776 fb_info.monspecs.vfmax = simple_strtoul(p + 1, &p, 0); in acornfb_parse_mon() 783 fb_info.monspecs.dpms = simple_strtoul(p + 1, &p, 0); in acornfb_parse_mon() 788 fb_info.var.width = simple_strtoul(p + 1, &p, 0); in acornfb_parse_mon() 793 fb_info.var.height = simple_strtoul(p + 1, NULL, 0); in acornfb_parse_mon() 829 current_par.montype = simple_strtoul(opt, &opt, 0); in acornfb_parse_montype() 851 size = simple_strtoul(opt, &opt, 0); in acornfb_parse_dram()
|
| H A D | atafb.c | 2740 xres_virtual = xres = simple_strtoul(p, NULL, 10); in atafb_setup_ext() 2747 yres = simple_strtoul(p, NULL, 10); in atafb_setup_ext() 2754 depth = simple_strtoul(p, NULL, 10); in atafb_setup_ext() 2776 addr = simple_strtoul(p, NULL, 0); in atafb_setup_ext() 2782 len = simple_strtoul(p, NULL, 0); in atafb_setup_ext() 2786 external_vgaiobase = simple_strtoul(p, NULL, 0); in atafb_setup_ext() 2790 external_bitspercol = simple_strtoul(p, NULL, 0); in atafb_setup_ext() 2807 xres_virtual = simple_strtoul(p, NULL, 10); in atafb_setup_ext() 2857 xres = simple_strtoul(p, NULL, 10); in atafb_setup_int() 2861 tt_yres = st_yres = simple_strtoul(p, NULL, 10); in atafb_setup_int() [all …]
|
| /linux/arch/x86/kernel/ |
| H A D | early_printk.c | 169 early_serial_base = simple_strtoul(s, &e, 16); in early_serial_init() 175 port = simple_strtoul(s, &e, 10); in early_serial_init() 230 membase = simple_strtoul(s, &e, 16); in early_mmio_serial_init() 244 baudrate = simple_strtoul(s, &e, 0); in early_mmio_serial_init() 287 bus = (u8)simple_strtoul(s, &e, 16); in early_pci_serial_init() 292 slot = (u8)simple_strtoul(s, &e, 16); in early_pci_serial_init() 297 func = (u8)simple_strtoul(s, &e, 16); in early_pci_serial_init()
|
| /linux/drivers/scsi/ |
| H A D | scsi_proc.c | 440 host = (p < end) ? simple_strtoul(p, &p, 0) : 0; in proc_scsi_write() 441 channel = (p + 1 < end) ? simple_strtoul(p + 1, &p, 0) : 0; in proc_scsi_write() 442 id = (p + 1 < end) ? simple_strtoul(p + 1, &p, 0) : 0; in proc_scsi_write() 443 lun = (p + 1 < end) ? simple_strtoul(p + 1, &p, 0) : 0; in proc_scsi_write() 454 host = (p < end) ? simple_strtoul(p, &p, 0) : 0; in proc_scsi_write() 455 channel = (p + 1 < end) ? simple_strtoul(p + 1, &p, 0) : 0; in proc_scsi_write() 456 id = (p + 1 < end) ? simple_strtoul(p + 1, &p, 0) : 0; in proc_scsi_write() 457 lun = (p + 1 < end) ? simple_strtoul(p + 1, &p, 0) : 0; in proc_scsi_write()
|
| /linux/lib/ |
| H A D | parser.c | 55 len = simple_strtoul(p, (char **) &p, 10); in match_one() 82 simple_strtoul(s, &args[argc].to, 0); in match_one() 85 simple_strtoul(s, &args[argc].to, 8); in match_one() 88 simple_strtoul(s, &args[argc].to, 16); in match_one()
|
| /linux/drivers/video/fbdev/core/ |
| H A D | fbsysfs.c | 150 var.bits_per_pixel = simple_strtoul(buf, last, 0); in store_bpp() 173 var.rotate = simple_strtoul(buf, last, 0); in store_rotate() 200 var.xres_virtual = simple_strtoul(buf, &last, 0); in store_virtual() 204 var.yres_virtual = simple_strtoul(last, &last, 0); in store_virtual() 234 arg = simple_strtoul(buf, &last, 0); in store_blank() 292 var.xoffset = simple_strtoul(buf, &last, 0); in store_pan() 296 var.yoffset = simple_strtoul(last, &last, 0); in store_pan() 331 state = simple_strtoul(buf, &last, 0); in store_fbstate()
|
| /linux/drivers/tty/serial/ |
| H A D | suncore.c | 121 baud = simple_strtoul(s, NULL, 0); in sunserial_console_termios() 123 bits = simple_strtoul(++s, NULL, 0); in sunserial_console_termios() 127 stop = simple_strtoul(++s, NULL, 0); in sunserial_console_termios()
|
| /linux/fs/cachefiles/ |
| H A D | daemon.c | 415 frun = simple_strtoul(args, &args, 10); in cachefiles_daemon_frun() 439 fcull = simple_strtoul(args, &args, 10); in cachefiles_daemon_fcull() 463 fstop = simple_strtoul(args, &args, 10); in cachefiles_daemon_fstop() 487 brun = simple_strtoul(args, &args, 10); in cachefiles_daemon_brun() 511 bcull = simple_strtoul(args, &args, 10); in cachefiles_daemon_bcull() 535 bstop = simple_strtoul(args, &args, 10); in cachefiles_daemon_bstop() 686 mask = simple_strtoul(args, &args, 0); in cachefiles_daemon_debug()
|
| /linux/drivers/target/iscsi/ |
| H A D | iscsi_target_parameters.c | 766 value = simple_strtoul(value_ptr, &tmpptr, 0); in iscsi_check_numerical_value() 950 u32 acceptor_value = simple_strtoul(param->value, &tmpptr, 0); in iscsi_check_acceptor_state() 951 u32 proposer_value = simple_strtoul(value, &tmpptr, 0); in iscsi_check_acceptor_state() 1254 ErrorRecoveryLevel = simple_strtoul(param->value, in iscsi_enforce_integrity_rules() 1260 MaxBurstLength = simple_strtoul(param->value, in iscsi_enforce_integrity_rules() 1287 FirstBurstLength = simple_strtoul(param->value, in iscsi_enforce_integrity_rules() 1506 simple_strtoul(param->value, &tmpptr, 0); in iscsi_set_connection_parameters() 1534 simple_strtoul(param->value, &tmpptr, 0); in iscsi_set_connection_parameters() 1542 simple_strtoul(param->value, &tmpptr, 0); in iscsi_set_connection_parameters() 1602 simple_strtoul(param->value, &tmpptr, 0); in iscsi_set_session_parameters() [all …]
|
| /linux/net/rxrpc/ |
| H A D | server_key.c | 55 service = simple_strtoul(desc, &p, 10); in rxrpc_vet_description_s() 58 sec_class = simple_strtoul(p + 1, &p, 10); in rxrpc_vet_description_s()
|
| /linux/drivers/platform/x86/dell/ |
| H A D | dcdbas.c | 153 buf_size = simple_strtoul(buf, NULL, 10); in smi_data_buf_size_store() 220 host_control_action = simple_strtoul(buf, NULL, 10); in host_control_action_store() 235 host_control_smi_type = simple_strtoul(buf, NULL, 10); in host_control_smi_type_store() 250 host_control_on_shutdown = simple_strtoul(buf, NULL, 10); in host_control_on_shutdown_store() 319 unsigned long val = simple_strtoul(buf, NULL, 10); in smi_request_store()
|
| /linux/drivers/video/fbdev/omap2/omapfb/dss/ |
| H A D | overlay-sysfs.c | 144 info.pos_x = simple_strtoul(buf, &last, 10); in overlay_position_store() 149 info.pos_y = simple_strtoul(last, &last, 10); in overlay_position_store() 183 info.out_width = simple_strtoul(buf, &last, 10); in overlay_output_size_store() 188 info.out_height = simple_strtoul(last, &last, 10); in overlay_output_size_store()
|
| /linux/drivers/input/touchscreen/ |
| H A D | gunze.c | 51 input_report_abs(dev, ABS_X, simple_strtoul(gunze->data + 1, NULL, 10)); in gunze_process_packet() 52 input_report_abs(dev, ABS_Y, 1024 - simple_strtoul(gunze->data + 6, NULL, 10)); in gunze_process_packet()
|
| /linux/drivers/mtd/devices/ |
| H A D | slram.c | 235 devstart = simple_strtoul(szstart, &buffer, 0); in parse_cmdline() 239 devlength = simple_strtoul(szlength, &buffer, 0); in parse_cmdline() 246 devlength = simple_strtoul(szlength + 1, &buffer, 0); in parse_cmdline()
|
| /linux/drivers/pci/hotplug/ |
| H A D | cpcihp_generic.c | 74 tmp = simple_strtoul(str, &p, 16); in validate_parameters() 86 tmp = simple_strtoul(str, &p, 16); in validate_parameters()
|
| H A D | rpaphp_core.c | 296 simple_strtoul(drc_type, &endptr, 10); in is_php_type() 364 slot->type = simple_strtoul(drc.drc_type, NULL, 10); in rpaphp_drc_info_add_slot() 401 slot->type = simple_strtoul(type, NULL, 10); in rpaphp_drc_add_slot()
|
| /linux/drivers/usb/misc/ |
| H A D | cytherm.c | 88 cytherm->brightness = simple_strtoul(buf, NULL, 10); in brightness_store() 220 tmp = simple_strtoul(buf, NULL, 10); in port0_store() 275 tmp = simple_strtoul(buf, NULL, 10); in port1_store()
|
| /linux/arch/sh/drivers/dma/ |
| H A D | dma-sysfs.c | 89 config = simple_strtoul(buf, NULL, 0); in dma_store_config() 109 channel->mode = simple_strtoul(buf, NULL, 0); in dma_store_mode()
|
| /linux/arch/mips/sibyte/common/ |
| H A D | cfe.c | 180 initrd_size = simple_strtoul(str, &endptr, 16); in initrd_setup() 186 initrd_start = simple_strtoul(tmp, &endptr, 16); in initrd_setup()
|
| /linux/drivers/s390/net/ |
| H A D | ctcm_main.h | 273 dev1 = simple_strtoul(id1, &id1, 16); in ctcm_less_than() 274 dev2 = simple_strtoul(id2, &id2, 16); in ctcm_less_than()
|
| /linux/arch/um/drivers/ |
| H A D | stderr_console.c | 43 use_stderr_console = simple_strtoul(str,&str,0); in stderr_setup()
|
| /linux/arch/x86/entry/vdso/ |
| H A D | vdso32-setup.c | 33 vdso32_enabled = simple_strtoul(s, NULL, 0); in vdso32_setup()
|
| /linux/drivers/parisc/ |
| H A D | pdc_stable.c | 286 hwpath.mod = simple_strtoul(temp+1, NULL, 10); in pdcspath_hwpath_write() 296 hwpath.bc[i] = simple_strtoul(temp+1, NULL, 10); in pdcspath_hwpath_write() 302 hwpath.bc[i] = simple_strtoul(in, NULL, 10); in pdcspath_hwpath_write() 398 layers[0] = simple_strtoul(in, NULL, 10); in pdcspath_layer_write() 405 layers[i] = simple_strtoul(temp, NULL, 10); in pdcspath_layer_write()
|
| /linux/drivers/edac/ |
| H A D | edac_device_sysfs.c | 43 ctl_info->log_ue = (simple_strtoul(data, NULL, 0) != 0); in edac_device_ctl_log_ue_store() 60 ctl_info->log_ce = (simple_strtoul(data, NULL, 0) != 0); in edac_device_ctl_log_ce_store() 77 ctl_info->panic_on_ue = (simple_strtoul(data, NULL, 0) != 0); in edac_device_ctl_panic_on_ue_store() 100 value = simple_strtoul(data, NULL, 0); in edac_device_ctl_poll_msec_store()
|