mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 22:44:27 -05:00 
			
		
		
		
	This patch has been backported to stable kernel 5.4 already. Remove our local patch explicitly now, as by applying the patch (or refreshing) the relevant code is actually added a second time. Refresh remaining patches as well. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
		
			
				
	
	
		
			38 lines
		
	
	
		
			958 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			958 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From: Russell King <rmk+kernel@armlinux.org.uk>
 | 
						|
Bcc: linux@mail.armlinux.org.uk
 | 
						|
Cc: linux-i2c@vger.kernel.org
 | 
						|
Subject: [PATCH 02/17] i2c: pxa: remove unneeded includes
 | 
						|
MIME-Version: 1.0
 | 
						|
Content-Disposition: inline
 | 
						|
Content-Transfer-Encoding: 8bit
 | 
						|
Content-Type: text/plain; charset="utf-8"
 | 
						|
 | 
						|
i2c-pxa does not need linux/sched.h nor linux/time.h includes, so
 | 
						|
remove these.
 | 
						|
 | 
						|
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
 | 
						|
---
 | 
						|
 drivers/i2c/busses/i2c-pxa.c | 4 ----
 | 
						|
 1 file changed, 4 deletions(-)
 | 
						|
 | 
						|
--- a/drivers/i2c/busses/i2c-pxa.c
 | 
						|
+++ b/drivers/i2c/busses/i2c-pxa.c
 | 
						|
@@ -20,8 +20,6 @@
 | 
						|
 #include <linux/module.h>
 | 
						|
 #include <linux/i2c.h>
 | 
						|
 #include <linux/init.h>
 | 
						|
-#include <linux/time.h>
 | 
						|
-#include <linux/sched.h>
 | 
						|
 #include <linux/delay.h>
 | 
						|
 #include <linux/errno.h>
 | 
						|
 #include <linux/interrupt.h>
 | 
						|
@@ -35,8 +33,6 @@
 | 
						|
 #include <linux/io.h>
 | 
						|
 #include <linux/platform_data/i2c-pxa.h>
 | 
						|
 
 | 
						|
-#include <asm/irq.h>
 | 
						|
-
 | 
						|
 struct pxa_reg_layout {
 | 
						|
 	u32 ibmr;
 | 
						|
 	u32 idbr;
 |