Searched refs:kstrtouint (Results 1 - 25 of 218) sorted by relevance

123456789

/linux-master/drivers/staging/media/atomisp/pci/
H A Datomisp_drvfs.c91 ret = kstrtouint(buf, 10, &dbglvl);
118 ret = kstrtouint(buf, 10, &opt);
139 ret = kstrtouint(buf, 10, &opt);
/linux-master/drivers/md/
H A Ddm-unstripe.c57 if (kstrtouint(argv[0], 10, &uc->stripes) || !uc->stripes) {
62 if (kstrtouint(argv[1], 10, &uc->chunk_size) || !uc->chunk_size) {
67 if (kstrtouint(argv[2], 10, &uc->unstripe)) {
H A Ddm-exception-store.c148 if (kstrtouint(chunk_size_arg, 10, &chunk_size)) {
/linux-master/arch/x86/mm/
H A Dpkeys.c153 if (kstrtouint(buf, 0, &new_init_pkru))
190 if (kstrtouint(opt, 0, &new_init_pkru))
/linux-master/drivers/platform/x86/intel/ifs/
H A Dsysfs.c70 rc = kstrtouint(buf, 0, &cpu);
94 rc = kstrtouint(buf, 0, &cur_batch);
/linux-master/drivers/mtd/parsers/
H A Dparser_imagetag.c81 if (kstrtouint(buf->flash_image_start, 10, &rootfsaddr) ||
91 if (kstrtouint(buf->kernel_address, 10, &kerneladdr) ||
101 if (kstrtouint(buf->kernel_length, 10, &kernellen)) {
110 if (kstrtouint(buf->total_length, 10, &totallen)) {
/linux-master/include/linux/
H A Dkstrtox.h71 int __must_check kstrtouint(const char *s, unsigned int base, unsigned int *res);
86 return kstrtouint(s, base, res);
/linux-master/drivers/platform/x86/intel/wmi/
H A Dsbl-fw-update.c86 ret = kstrtouint(buf, 0, &val);
/linux-master/lib/
H A Dkstrtox.c213 * kstrtouint - convert a string to an unsigned int
228 int kstrtouint(const char *s, unsigned int base, unsigned int *res) function
241 EXPORT_SYMBOL(kstrtouint); variable
426 kstrto_from_user(kstrtouint_from_user, kstrtouint, unsigned int);
H A Dparser.c217 return kstrtouint(buf, 10, result);
/linux-master/drivers/net/netdevsim/
H A Dbus.c38 ret = kstrtouint(buf, 0, &num_vfs);
75 ret = kstrtouint(buf, 0, &port_index);
96 ret = kstrtouint(buf, 0, &port_index);
/linux-master/drivers/usb/host/
H A Dehci-sysfs.c92 if (kstrtouint(buf, 0, &uframe_periodic_max) < 0)
/linux-master/drivers/clocksource/
H A Dacpi_pm.c233 ret = kstrtouint(arg, 16, &base);
/linux-master/drivers/s390/net/
H A Dqeth_core_sys.c109 rc = kstrtouint(buf, 16, &portno);
255 rc = kstrtouint(buf, 10, &cnt);
350 rc = kstrtouint(buf, 16, &input);
557 rc = kstrtouint(buf, 10, &input);
/linux-master/drivers/char/hw_random/
H A Dhistb-rng.c103 if (kstrtouint(buf, 0, &depth))
/linux-master/drivers/firmware/xilinx/
H A Dzynqmp-debug.c80 if (i == ARRAY_SIZE(pm_api_list) && kstrtouint(pm_api_req, 10, pm_id))
/linux-master/mm/kasan/
H A Dhw_tags.c180 rv = kstrtouint(arg, 0, &kasan_page_alloc_sample_order);
/linux-master/drivers/misc/pvpanic/
H A Dpvpanic.c118 err = kstrtouint(buf, 16, &tmp);
/linux-master/drivers/acpi/dptf/
H A Ddptf_pch_fivr.c81 if (kstrtouint(buf, 0, &val) < 0)\
/linux-master/mm/
H A Dmemtest.c98 ret = kstrtouint(arg, 0, &memtest_pattern);
/linux-master/drivers/hwtracing/stm/
H A Dp_sys-t.c186 ret = kstrtouint(page, 10, &ms);
217 ret = kstrtouint(page, 10, &ms);
/linux-master/drivers/leds/
H A Dleds-lm3642.c178 ret = kstrtouint(buf, 10, &state);
225 ret = kstrtouint(buf, 10, &state);
/linux-master/drivers/staging/greybus/
H A Dcamera.c923 ret = kstrtouint(token, 10, &nstreams);
934 ret = kstrtouint(token, 10, &flags);
952 ret = kstrtouint(token, 10, &stream->width);
961 ret = kstrtouint(token, 10, &stream->height);
970 ret = kstrtouint(token, 16, &stream->format);
1013 ret = kstrtouint(token, 10, &request_id);
1021 ret = kstrtouint(token, 16, &streams_mask);
1029 ret = kstrtouint(token, 10, &num_frames);
/linux-master/fs/
H A Dfs_parser.c221 if (kstrtouint(param->string, base, &result->uint_32) < 0)
294 kstrtouint(param->string, 0, &result->uint_32) < 0)
/linux-master/drivers/s390/block/
H A Ddasd_devmap.c149 if (!kstrtouint(str, 16, &val)) {
159 if (kstrtouint(tok, 16, &val) || val > 0xff)
164 if (kstrtouint(tok, 16, &val) || val > 0xff)
169 if (kstrtouint(tok, 16, &val) || val > 0xffff)
984 if (kstrtouint(buf, 0, &val) || val > 1)
1030 if (kstrtouint(buf, 0, &val) || val > 1)
1088 if (kstrtouint(buf, 0, &val) || val > 1)
1128 if (kstrtouint(buf, 0, &val) || val > 1)
1450 if (kstrtouint(buf, 0, &val) || val > 1)
1488 if (kstrtouint(bu
[all...]

Completed in 223 milliseconds

123456789