Lines Matching refs:str
6027 char *nxt, *str;
6033 str = txselect_list;
6036 deflt = simple_strtoul(str, &nxt, 0);
6045 str = ++nxt;
6046 unit = simple_strtoul(str, &nxt, 0);
6047 if (nxt == str || !*nxt || *nxt != ',') {
6052 str = ++nxt;
6053 port = simple_strtoul(str, &nxt, 0);
6054 if (nxt == str || *nxt != '=') {
6059 str = ++nxt;
6060 val = simple_strtoul(str, &nxt, 0);
6061 if (nxt == str) {
6071 str = ++nxt;
6072 h1 = (u32)simple_strtoul(str, &nxt, 0);
6073 if (nxt == str)
6113 static int setup_txselect(const char *str, const struct kernel_param *kp)
6119 if (strlen(str) >= ARRAY_SIZE(txselect_list)) {
6123 val = simple_strtoul(str, &n, 0);
6124 if (n == str || val >= (TXDDS_TABLE_SZ + TXDDS_EXTRA_SZ +
6130 strncpy(txselect_list, str, ARRAY_SIZE(txselect_list) - 1);