mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	pwm: tiehrpwm: inline accessor functions
These elementary functions should be inlined for fastest access. Also fixes this warning as a side-effect (when no PM_SLEEP is selected): drivers/pwm/pwm-tiehrpwm.c:141:12: warning: 'ehrpwm_read' defined but not used [-Wunused-function] Signed-off-by: Wolfram Sang <wsa@sang-engineering.com> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
		
							parent
							
								
									af5935ec12
								
							
						
					
					
						commit
						3ea57ea669
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -138,12 +138,12 @@ static inline struct ehrpwm_pwm_chip *to_ehrpwm_pwm_chip(struct pwm_chip *chip)
 | 
				
			||||||
	return container_of(chip, struct ehrpwm_pwm_chip, chip);
 | 
						return container_of(chip, struct ehrpwm_pwm_chip, chip);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static u16 ehrpwm_read(void __iomem *base, int offset)
 | 
					static inline u16 ehrpwm_read(void __iomem *base, int offset)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	return readw(base + offset);
 | 
						return readw(base + offset);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static void ehrpwm_write(void __iomem *base, int offset, unsigned int val)
 | 
					static inline void ehrpwm_write(void __iomem *base, int offset, unsigned int val)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	writew(val & 0xFFFF, base + offset);
 | 
						writew(val & 0xFFFF, base + offset);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue