mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	Add the required changes to make it compile for 4.1 again. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 46306
		
			
				
	
	
		
			21 lines
		
	
	
		
			785 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			785 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| --- a/tn7atm.c
 | |
| +++ b/tn7atm.c
 | |
| @@ -856,7 +856,7 @@ static int __init tn7atm_irq_request (st
 | |
|  
 | |
|    priv->sar_irq = LNXINTNUM (ATM_SAR_INT);      /* Interrupt line # */
 | |
|  
 | |
| -  if (request_irq (priv->sar_irq, tn7atm_sar_irq, IRQF_DISABLED, "SAR ", dev))
 | |
| +  if (request_irq (priv->sar_irq, tn7atm_sar_irq, 0, "SAR ", dev))
 | |
|      printk ("Could not register tn7atm_sar_irq\n");
 | |
|  
 | |
|    /*
 | |
| @@ -880,7 +880,7 @@ static int __init tn7atm_irq_request (st
 | |
|     * Reigster Receive interrupt A
 | |
|     */
 | |
|    priv->dsl_irq = LNXINTNUM (ATM_DSL_INT);      /* Interrupt line # */
 | |
| -  if (request_irq (priv->dsl_irq, tn7atm_dsl_irq, IRQF_DISABLED, "DSL ", dev))
 | |
| +  if (request_irq (priv->dsl_irq, tn7atm_dsl_irq, 0, "DSL ", dev))
 | |
|      printk ("Could not register tn7atm_dsl_irq\n");
 | |
|  
 | |
|  /***** VRB Tasklet Mode ****/
 |