mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	pwm: bcm-kona: Update macros to remove braces around numbers
Parentheses are not needed around integer literals in macros. Remove them. Signed-off-by: Sheetal Tigadoli <sheetal.tigadoli@broadcom.com> Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Thierry Reding <thierry.reding@gmail.com>
This commit is contained in:
		
							parent
							
								
									519ef9b5f2
								
							
						
					
					
						commit
						6571d13e44
					
				
					 1 changed files with 8 additions and 8 deletions
				
			
		| 
						 | 
					@ -45,25 +45,25 @@
 | 
				
			||||||
 *    high or low depending on its state at that exact instant.
 | 
					 *    high or low depending on its state at that exact instant.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define PWM_CONTROL_OFFSET			(0x00000000)
 | 
					#define PWM_CONTROL_OFFSET			0x00000000
 | 
				
			||||||
#define PWM_CONTROL_SMOOTH_SHIFT(chan)		(24 + (chan))
 | 
					#define PWM_CONTROL_SMOOTH_SHIFT(chan)		(24 + (chan))
 | 
				
			||||||
#define PWM_CONTROL_TYPE_SHIFT(chan)		(16 + (chan))
 | 
					#define PWM_CONTROL_TYPE_SHIFT(chan)		(16 + (chan))
 | 
				
			||||||
#define PWM_CONTROL_POLARITY_SHIFT(chan)	(8 + (chan))
 | 
					#define PWM_CONTROL_POLARITY_SHIFT(chan)	(8 + (chan))
 | 
				
			||||||
#define PWM_CONTROL_TRIGGER_SHIFT(chan)		(chan)
 | 
					#define PWM_CONTROL_TRIGGER_SHIFT(chan)		(chan)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define PRESCALE_OFFSET				(0x00000004)
 | 
					#define PRESCALE_OFFSET				0x00000004
 | 
				
			||||||
#define PRESCALE_SHIFT(chan)			((chan) << 2)
 | 
					#define PRESCALE_SHIFT(chan)			((chan) << 2)
 | 
				
			||||||
#define PRESCALE_MASK(chan)			(0x7 << PRESCALE_SHIFT(chan))
 | 
					#define PRESCALE_MASK(chan)			(0x7 << PRESCALE_SHIFT(chan))
 | 
				
			||||||
#define PRESCALE_MIN				(0x00000000)
 | 
					#define PRESCALE_MIN				0x00000000
 | 
				
			||||||
#define PRESCALE_MAX				(0x00000007)
 | 
					#define PRESCALE_MAX				0x00000007
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define PERIOD_COUNT_OFFSET(chan)		(0x00000008 + ((chan) << 3))
 | 
					#define PERIOD_COUNT_OFFSET(chan)		(0x00000008 + ((chan) << 3))
 | 
				
			||||||
#define PERIOD_COUNT_MIN			(0x00000002)
 | 
					#define PERIOD_COUNT_MIN			0x00000002
 | 
				
			||||||
#define PERIOD_COUNT_MAX			(0x00ffffff)
 | 
					#define PERIOD_COUNT_MAX			0x00ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define DUTY_CYCLE_HIGH_OFFSET(chan)		(0x0000000c + ((chan) << 3))
 | 
					#define DUTY_CYCLE_HIGH_OFFSET(chan)		(0x0000000c + ((chan) << 3))
 | 
				
			||||||
#define DUTY_CYCLE_HIGH_MIN			(0x00000000)
 | 
					#define DUTY_CYCLE_HIGH_MIN			0x00000000
 | 
				
			||||||
#define DUTY_CYCLE_HIGH_MAX			(0x00ffffff)
 | 
					#define DUTY_CYCLE_HIGH_MAX			0x00ffffff
 | 
				
			||||||
 | 
					
 | 
				
			||||||
struct kona_pwmc {
 | 
					struct kona_pwmc {
 | 
				
			||||||
	struct pwm_chip chip;
 | 
						struct pwm_chip chip;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue