mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	Many places in the kernel use 'udelay' as an identifier, and
are broken with the current "#define udelay um_udelay". Fix
this by adding an argument to the macro, and do the same to
'ndelay' as well, just in case.
Fixes: 0bc8fb4dda ("um: Implement ndelay/udelay in time-travel mode")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
		
	
			
		
			
				
	
	
		
			30 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
	
		
			670 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef __UM_DELAY_H
 | 
						|
#define __UM_DELAY_H
 | 
						|
#include <asm-generic/delay.h>
 | 
						|
#include <linux/time-internal.h>
 | 
						|
 | 
						|
static inline void um_ndelay(unsigned long nsecs)
 | 
						|
{
 | 
						|
	if (time_travel_mode == TT_MODE_INFCPU ||
 | 
						|
	    time_travel_mode == TT_MODE_EXTERNAL) {
 | 
						|
		time_travel_ndelay(nsecs);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	ndelay(nsecs);
 | 
						|
}
 | 
						|
#undef ndelay
 | 
						|
#define ndelay(n) um_ndelay(n)
 | 
						|
 | 
						|
static inline void um_udelay(unsigned long usecs)
 | 
						|
{
 | 
						|
	if (time_travel_mode == TT_MODE_INFCPU ||
 | 
						|
	    time_travel_mode == TT_MODE_EXTERNAL) {
 | 
						|
		time_travel_ndelay(1000 * usecs);
 | 
						|
		return;
 | 
						|
	}
 | 
						|
	udelay(usecs);
 | 
						|
}
 | 
						|
#undef udelay
 | 
						|
#define udelay(n) um_udelay(n)
 | 
						|
#endif /* __UM_DELAY_H */
 |