Release 4.7 drivers/staging/rts5208/trace.c
  
  
#include <linux/kernel.h>
#include <linux/string.h>
#include "rtsx.h"
#ifdef _MSG_TRACE
void _rtsx_trace(struct rtsx_chip *chip, const char *file, const char *func,
		 int line)
{
	struct trace_msg_t *msg = &chip->trace_msg[chip->msg_idx];
	file = kbasename(file);
	dev_dbg(rtsx_dev(chip), "[%s][%s]:[%d]\n", file, func, line);
	strncpy(msg->file, file, MSG_FILE_LEN - 1);
	strncpy(msg->func, func, MSG_FUNC_LEN - 1);
	msg->line = (u16)line;
	get_current_time(msg->timeval_buf, TIME_VAL_LEN);
	msg->valid = 1;
	chip->msg_idx++;
	if (chip->msg_idx >= TRACE_ITEM_CNT)
		chip->msg_idx = 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| joe perches | joe perches | 130 | 100.00% | 1 | 100.00% | 
 | Total | 130 | 100.00% | 1 | 100.00% | 
#endif
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| joe perches | joe perches | 144 | 100.00% | 1 | 100.00% | 
 | Total | 144 | 100.00% | 1 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.