mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	HID: Fix debug name for BTN_GEAR_DOWN, BTN_GEAR_UP, BTN_WHEEL
The name of BTN_GEAR_DOWN was WheelBtn and BTN_WHEEL was missing. Further, BTN_GEAR_UP had a space in its name and no Btn, which is against convention. This makes the names BtnGearDown, BtnGearUp, and BtnWheel, fixing the errors and matching convention. Signed-off-by: Vicki Pfau <vi@endrift.com> Signed-off-by: Jiri Kosina <jkosina@suse.com>
This commit is contained in:
		
							parent
							
								
									50f9ff52c0
								
							
						
					
					
						commit
						194808a1ea
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
				
			
			@ -3298,8 +3298,8 @@ static const char *keys[KEY_MAX + 1] = {
 | 
			
		|||
	[BTN_TOUCH] = "Touch",			[BTN_STYLUS] = "Stylus",
 | 
			
		||||
	[BTN_STYLUS2] = "Stylus2",		[BTN_TOOL_DOUBLETAP] = "ToolDoubleTap",
 | 
			
		||||
	[BTN_TOOL_TRIPLETAP] = "ToolTripleTap",	[BTN_TOOL_QUADTAP] = "ToolQuadrupleTap",
 | 
			
		||||
	[BTN_GEAR_DOWN] = "WheelBtn",
 | 
			
		||||
	[BTN_GEAR_UP] = "Gear up",		[KEY_OK] = "Ok",
 | 
			
		||||
	[BTN_GEAR_DOWN] = "BtnGearDown",	[BTN_GEAR_UP] = "BtnGearUp",
 | 
			
		||||
	[BTN_WHEEL] = "BtnWheel",		[KEY_OK] = "Ok",
 | 
			
		||||
	[KEY_SELECT] = "Select",		[KEY_GOTO] = "Goto",
 | 
			
		||||
	[KEY_CLEAR] = "Clear",			[KEY_POWER2] = "Power2",
 | 
			
		||||
	[KEY_OPTION] = "Option",		[KEY_INFO] = "Info",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue