xfree86: Constify InputClass functions
Signed-off-by: Dan Nicholson <dbn.lists@gmail.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
		
							parent
							
								
									61c35d8ac4
								
							
						
					
					
						commit
						d09bc8f8e5
					
				| 
						 | 
					@ -501,7 +501,8 @@ AddOtherInputDevices(void)
 | 
				
			||||||
 * statements must match.
 | 
					 * statements must match.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static Bool
 | 
					static Bool
 | 
				
			||||||
InputClassMatches(XF86ConfInputClassPtr iclass, InputAttributes *attrs)
 | 
					InputClassMatches(const XF86ConfInputClassPtr iclass,
 | 
				
			||||||
 | 
					                  const InputAttributes *attrs)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    char **cur;
 | 
					    char **cur;
 | 
				
			||||||
    Bool match;
 | 
					    Bool match;
 | 
				
			||||||
| 
						 | 
					@ -591,7 +592,7 @@ InputClassMatches(XF86ConfInputClassPtr iclass, InputAttributes *attrs)
 | 
				
			||||||
 * well as any previous InputClass sections.
 | 
					 * well as any previous InputClass sections.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static int
 | 
					static int
 | 
				
			||||||
MergeInputClasses(IDevPtr idev, InputAttributes *attrs)
 | 
					MergeInputClasses(const IDevPtr idev, const InputAttributes *attrs)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    XF86ConfInputClassPtr cl;
 | 
					    XF86ConfInputClassPtr cl;
 | 
				
			||||||
    XF86OptionPtr classopts, mergedopts = NULL;
 | 
					    XF86OptionPtr classopts, mergedopts = NULL;
 | 
				
			||||||
| 
						 | 
					@ -630,7 +631,7 @@ MergeInputClasses(IDevPtr idev, InputAttributes *attrs)
 | 
				
			||||||
 * value of the last matching class and holler when returning TRUE.
 | 
					 * value of the last matching class and holler when returning TRUE.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static Bool
 | 
					static Bool
 | 
				
			||||||
IgnoreInputClass(IDevPtr idev, InputAttributes *attrs)
 | 
					IgnoreInputClass(const IDevPtr idev, const InputAttributes *attrs)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    XF86ConfInputClassPtr cl;
 | 
					    XF86ConfInputClassPtr cl;
 | 
				
			||||||
    Bool ignore = FALSE;
 | 
					    Bool ignore = FALSE;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue