Lines Matching refs:text
853 static const char text[] = "block ack control, write:\n" in wil_read_back() local
860 return simple_read_from_buffer(user_buf, count, ppos, text, in wil_read_back()
861 sizeof(text)); in wil_read_back()
928 char text[256]; in wil_read_pmccfg() local
933 snprintf(text, sizeof(text), "Last command status: %d\n\n%s", in wil_read_pmccfg()
936 return simple_read_from_buffer(user_buf, count, ppos, text, in wil_read_pmccfg()
937 strlen(text) + 1); in wil_read_pmccfg()
2131 static char text[400]; in wil_read_led_blink_time() local
2133 snprintf(text, sizeof(text), in wil_read_led_blink_time()
2146 return simple_read_from_buffer(user_buf, count, ppos, text, in wil_read_led_blink_time()
2147 sizeof(text)); in wil_read_led_blink_time()
2199 char *text; in wil_read_suspend_stats() local
2202 text = kmalloc(text_size, GFP_KERNEL); in wil_read_suspend_stats()
2203 if (!text) in wil_read_suspend_stats()
2206 n = snprintf(text, text_size, in wil_read_suspend_stats()
2229 ret = simple_read_from_buffer(user_buf, count, ppos, text, n); in wil_read_suspend_stats()
2231 kfree(text); in wil_read_suspend_stats()