36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0
 | |
|  * aw882xx_log.h
 | |
|  *
 | |
|  * Copyright (c) 2020 AWINIC Technology CO., LTD
 | |
|  *
 | |
|  * Author: Nick Li <liweilei@awinic.com.cn>
 | |
|  *
 | |
|  * This program is free software; you can redistribute it and/or modify it
 | |
|  * under the terms of the GNU General Public License as published by the
 | |
|  * Free Software Foundation; either version 2 of the License, or (at your
 | |
|  * option) any later version.
 | |
|  */
 | |
| 
 | |
| #ifndef __AW882XX_LOG_H__
 | |
| #define __AW882XX_LOG_H__
 | |
| 
 | |
| /********************************************
 | |
|  * print information control
 | |
|  *******************************************/
 | |
| #define aw_dev_err(dev, format, ...) \
 | |
| 		pr_err("[Awinic][%s]%s: " format "\n", dev_name(dev), __func__, ##__VA_ARGS__)
 | |
| #define aw_dev_info(dev, format, ...) \
 | |
| 		pr_info("[Awinic][%s]%s: " format "\n", dev_name(dev), __func__, ##__VA_ARGS__)
 | |
| #define aw_dev_dbg(dev, format, ...) \
 | |
| 		pr_debug("[Awinic][%s]%s: " format "\n", dev_name(dev), __func__, ##__VA_ARGS__)
 | |
| 
 | |
| #define aw_pr_err(format, ...) \
 | |
| 		pr_err("[Awinic]%s: " format "\n", __func__, ##__VA_ARGS__)
 | |
| #define aw_pr_info(format, ...) \
 | |
| 		pr_info("[Awinic]%s: " format "\n", __func__, ##__VA_ARGS__)
 | |
| #define aw_pr_dbg(format, ...) \
 | |
| 		pr_debug("[Awinic]%s: " format "\n", __func__, ##__VA_ARGS__)
 | |
| 
 | |
| #endif
 | |
| 
 |