20 lines
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			388 B
		
	
	
	
		
			C
		
	
	
	
| /*
 | |
|  * Copyright 2018 NXP
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0
 | |
|  *
 | |
|  */
 | |
| 
 | |
| #ifndef __CDNS3_LINUX_COMPAT__
 | |
| #define __CDNS3_LINUX_COMPAT__
 | |
| 
 | |
| #define WARN(val, format, arg...)	debug(format, ##arg)
 | |
| #define dev_WARN(dev, format, arg...)	debug(format, ##arg)
 | |
| 
 | |
| static inline void *devm_kzalloc(struct device *dev, unsigned int size,
 | |
| 				 unsigned int flags)
 | |
| {
 | |
| 	return kzalloc(size, flags);
 | |
| }
 | |
| #endif
 |