xfre86: drop xf86Msg() in favor of LogMessageVerb()
This function is doing the same like LogMessageVerb(), so no need to keep around a duplicate implementation. Leaving it as a macro, until all callers, also in drivers, have been migrated. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1679>
This commit is contained in:
		
							parent
							
								
									14767eccc0
								
							
						
					
					
						commit
						a136ce3d57
					
				| 
						 | 
				
			
			@ -254,9 +254,6 @@ extern _X_EXPORT void
 | 
			
		|||
xf86DrvMsg(int scrnIndex, MessageType type, const char *format, ...)
 | 
			
		||||
_X_ATTRIBUTE_PRINTF(3, 4);
 | 
			
		||||
extern _X_EXPORT void
 | 
			
		||||
xf86Msg(MessageType type, const char *format, ...)
 | 
			
		||||
_X_ATTRIBUTE_PRINTF(2, 3);
 | 
			
		||||
extern _X_EXPORT void
 | 
			
		||||
xf86ErrorFVerb(int verb, const char *format, ...)
 | 
			
		||||
_X_ATTRIBUTE_PRINTF(2, 3);
 | 
			
		||||
extern _X_EXPORT void
 | 
			
		||||
| 
						 | 
				
			
			@ -405,5 +402,6 @@ xf86UpdateDesktopDimensions(void);
 | 
			
		|||
 | 
			
		||||
/* only for backwards (source) compatibility */
 | 
			
		||||
#define xf86MsgVerb LogMessageVerb
 | 
			
		||||
#define xf86Msg(type, ...) LogMessageVerb(type, 1, __VA_ARGS__)
 | 
			
		||||
 | 
			
		||||
#endif                          /* _XF86_H */
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1094,17 +1094,6 @@ xf86IDrvMsg(InputInfoPtr dev, MessageType type, const char *format, ...)
 | 
			
		|||
    va_end(ap);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Print non-driver messages with verbose level of 1 (default) */
 | 
			
		||||
void
 | 
			
		||||
xf86Msg(MessageType type, const char *format, ...)
 | 
			
		||||
{
 | 
			
		||||
    va_list ap;
 | 
			
		||||
 | 
			
		||||
    va_start(ap, format);
 | 
			
		||||
    LogVMessageVerb(type, 1, format, ap);
 | 
			
		||||
    va_end(ap);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Just like ErrorF, but with the verbose level checked */
 | 
			
		||||
void
 | 
			
		||||
xf86ErrorFVerb(int verb, const char *format, ...)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue