Searched refs:kstrtou8 (Results 1 - 25 of 81) sorted by relevance

1234

/linux-master/lib/
H A Dkstrtox.c307 int kstrtou8(const char *s, unsigned int base, u8 *res) function
320 EXPORT_SYMBOL(kstrtou8); variable
430 kstrto_from_user(kstrtou8_from_user, kstrtou8, u8);
H A Dtest-kstrtox.c614 TEST_OK(kstrtou8, u8, "%hhu", test_u8_ok);
649 TEST_FAIL(kstrtou8, u8, "%hhu", test_u8_fail);
/linux-master/drivers/leds/trigger/
H A Dledtrig-gpio.c59 ret = kstrtou8(buf, 10, &desired_brightness);
/linux-master/drivers/platform/chrome/wilco_ec/
H A Dsysfs.c79 ret = kstrtou8(buf, 10, &val);
208 ret = kstrtou8(buf, 10, &val);
H A Ddebugfs.c83 if (kstrtou8(tmp, 16, &byte))
/linux-master/net/sunrpc/
H A Daddr.c304 * @uaddr does not have to be '\0'-terminated, but kstrtou8() and
327 if (unlikely(kstrtou8(c + 1, 10, &portlo) != 0))
334 if (unlikely(kstrtou8(c + 1, 10, &porthi) != 0))
/linux-master/drivers/video/fbdev/omap2/omapfb/dss/
H A Doverlay-sysfs.c249 r = kstrtou8(buf, 0, &alpha);
291 r = kstrtou8(buf, 0, &alpha);
331 r = kstrtou8(buf, 0, &zorder);
/linux-master/drivers/thermal/intel/int340x_thermal/
H A Dprocessor_thermal_wt_hint.c95 if (kstrtou8(buf, 10, &mode) || mode > 1)
/linux-master/include/linux/
H A Dkstrtox.h96 int __must_check kstrtou8(const char *s, unsigned int base, u8 *res);
/linux-master/drivers/media/cec/core/
H A Dcec-pin-error-inj.c152 } else if (!kstrtou8(token, 0, &op)) {
177 has_pos = !kstrtou8(p, 0, &pos);
/linux-master/drivers/edac/
H A Dzynqmp_edac.c316 ret = kstrtou8(token[0], 0, &priv->ue_bitpos[0]);
320 ret = kstrtou8(token[1], 0, &priv->ue_bitpos[1]);
H A Dhighbank_mc_edac.c106 if (kstrtou8(buf, 16, &synd))
/linux-master/drivers/power/supply/
H A Dds2780_battery.c476 ret = kstrtou8(buf, 0, &new_setting);
524 ret = kstrtou8(buf, 0, &new_setting);
605 ret = kstrtou8(buf, 0, &new_setting);
H A Dds2781_battery.c478 ret = kstrtou8(buf, 0, &new_setting);
526 ret = kstrtou8(buf, 0, &new_setting);
607 ret = kstrtou8(buf, 0, &new_setting);
/linux-master/drivers/net/wireless/ath/ath6kl/
H A Ddebug.c1418 if (kstrtou8(token, 0, &pstream.user_pri))
1424 if (kstrtou8(token, 0, &pstream.traffic_direc))
1430 if (kstrtou8(token, 0, &pstream.traffic_class))
1436 if (kstrtou8(token, 0, &pstream.traffic_type))
1442 if (kstrtou8(token, 0, &pstream.voice_psc_cap))
1483 if (kstrtou8(token, 0, &pstream.tsid))
1595 if (kstrtou8(token, 0, &traffic_class))
1601 if (kstrtou8(token, 0, &tsid))
/linux-master/drivers/usb/gadget/function/
H A Du_ether_configfs.h124 ret = kstrtou8(page, 0, &val); \
H A Df_sourcesink.c914 ret = kstrtou8(page, 0, &num);
957 ret = kstrtou8(page, 0, &num);
1043 ret = kstrtou8(page, 0, &num);
1086 ret = kstrtou8(page, 0, &num);
/linux-master/drivers/hid/
H A Dhid-gt683r.c105 if (kstrtou8(buf, 10, &sysfs_mode) || sysfs_mode > 2)
/linux-master/drivers/i2c/busses/
H A Di2c-taos-evm.c126 * Voluntarily dropping error code of kstrtou8 since all
130 if (kstrtou8(p + 1, 16, &data->byte))
/linux-master/drivers/infiniband/core/
H A Dcma_configfs.c172 ret = kstrtou8(buf, 0, &tos);
/linux-master/drivers/input/misc/
H A Dideapad_slidebar.c185 error = kstrtou8(buf, 0, &mode);
/linux-master/drivers/pci/endpoint/
H A Dpci-ep-cfs.c365 if (kstrtou8(page, 0, &val) < 0) \
376 if (kstrtou8(page, 0, &val) < 0)
/linux-master/drivers/leds/
H A Dleds-lm3533.c374 if (kstrtou8(buf, 0, &val) || val > LM3533_RISEFALLTIME_MAX)
579 if (kstrtou8(buf, 0, &val))
/linux-master/arch/mips/pci/
H A Dops-tx4927.c204 if (kstrtou8(str + 7, 0, &val) == 0)
210 if (kstrtou8(str + 8, 0, &val) == 0)
/linux-master/drivers/fpga/
H A Ddfl-fme-error.c182 if (kstrtou8(buf, 0, &inject_error))

Completed in 252 milliseconds

1234