Lines Matching refs:debugfs_buf
191 char debugfs_buf[DWC_DEBUGFS_BUF_MAX]; in lane_detect_read() local
198 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "Lane Detected\n"); in lane_detect_read()
200 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "Lane Undetected\n"); in lane_detect_read()
202 return simple_read_from_buffer(buf, count, ppos, debugfs_buf, pos); in lane_detect_read()
229 char debugfs_buf[DWC_DEBUGFS_BUF_MAX]; in rx_valid_read() local
236 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "RX Valid\n"); in rx_valid_read()
238 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "RX Invalid\n"); in rx_valid_read()
240 return simple_read_from_buffer(buf, count, ppos, debugfs_buf, pos); in rx_valid_read()
326 char debugfs_buf[DWC_DEBUGFS_BUF_MAX]; in counter_enable_read() local
336 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "Counter Enabled\n"); in counter_enable_read()
338 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "Counter Disabled\n"); in counter_enable_read()
340 return simple_read_from_buffer(buf, count, ppos, debugfs_buf, pos); in counter_enable_read()
390 char debugfs_buf[DWC_DEBUGFS_BUF_MAX]; in counter_lane_read() local
399 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "Lane: %d\n", val); in counter_lane_read()
401 return simple_read_from_buffer(buf, count, ppos, debugfs_buf, pos); in counter_lane_read()
433 char debugfs_buf[DWC_DEBUGFS_BUF_MAX]; in counter_value_read() local
441 pos = scnprintf(debugfs_buf, DWC_DEBUGFS_BUF_MAX, "Counter value: %d\n", val); in counter_value_read()
443 return simple_read_from_buffer(buf, count, ppos, debugfs_buf, pos); in counter_value_read()