mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	clocksource/drivers/imx-tpm: Drop IRQF_IRQPOLL
Per the Documentation, IRQF_IRQPOLL is used for polling (only the interrupt that is registered first in a shared interrupt is considered for performance reasons) The TPM timer is not sharing interrupt with others, and pass irqpoll not make sense for i.MX platform. Signed-off-by: Peng Fan <peng.fan@nxp.com> Link: https://lore.kernel.org/r/20211214120737.1611955-3-peng.fan@oss.nxp.com Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
This commit is contained in:
		
							parent
							
								
									841255544b
								
							
						
					
					
						commit
						59e2bcd8a9
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -137,7 +137,7 @@ static struct timer_of to_tpm = {
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	.of_irq = {
 | 
						.of_irq = {
 | 
				
			||||||
		.handler		= tpm_timer_interrupt,
 | 
							.handler		= tpm_timer_interrupt,
 | 
				
			||||||
		.flags			= IRQF_TIMER | IRQF_IRQPOLL,
 | 
							.flags			= IRQF_TIMER,
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	.of_clk = {
 | 
						.of_clk = {
 | 
				
			||||||
		.name = "per",
 | 
							.name = "per",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue