kernel: update kernel 4.4 to version 4.4.7
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 49176
This commit is contained in:
		@@ -659,7 +659,7 @@ dwc_otg: Remove duplicate gadget probe/unregister function
 | 
			
		||||
 }
 | 
			
		||||
--- a/drivers/usb/core/hub.c
 | 
			
		||||
+++ b/drivers/usb/core/hub.c
 | 
			
		||||
@@ -4967,7 +4967,7 @@ static void port_event(struct usb_hub *h
 | 
			
		||||
@@ -4973,7 +4973,7 @@ static void port_event(struct usb_hub *h
 | 
			
		||||
 	if (portchange & USB_PORT_STAT_C_OVERCURRENT) {
 | 
			
		||||
 		u16 status = 0, unused;
 | 
			
		||||
 
 | 
			
		||||
 
 | 
			
		||||
@@ -13,7 +13,7 @@ Subject: [PATCH 032/170] Add blk_pos parameter to mmc multi_io_quirk callback
 | 
			
		||||
 | 
			
		||||
--- a/drivers/mmc/card/block.c
 | 
			
		||||
+++ b/drivers/mmc/card/block.c
 | 
			
		||||
@@ -1510,6 +1510,7 @@ static void mmc_blk_rw_rq_prep(struct mm
 | 
			
		||||
@@ -1518,6 +1518,7 @@ static void mmc_blk_rw_rq_prep(struct mm
 | 
			
		||||
 			brq->data.blocks = card->host->ops->multi_io_quirk(card,
 | 
			
		||||
 						(rq_data_dir(req) == READ) ?
 | 
			
		||||
 						MMC_DATA_READ : MMC_DATA_WRITE,
 | 
			
		||||
 
 | 
			
		||||
@@ -10,7 +10,7 @@ Subject: [PATCH 062/170] config: Enable CONFIG_MEMCG, but leave it disabled
 | 
			
		||||
 | 
			
		||||
--- a/kernel/cgroup.c
 | 
			
		||||
+++ b/kernel/cgroup.c
 | 
			
		||||
@@ -5286,7 +5286,7 @@ int __init cgroup_init_early(void)
 | 
			
		||||
@@ -5302,7 +5302,7 @@ int __init cgroup_init_early(void)
 | 
			
		||||
 	return 0;
 | 
			
		||||
 }
 | 
			
		||||
 
 | 
			
		||||
@@ -19,7 +19,7 @@ Subject: [PATCH 062/170] config: Enable CONFIG_MEMCG, but leave it disabled
 | 
			
		||||
 
 | 
			
		||||
 /**
 | 
			
		||||
  * cgroup_init - cgroup initialization
 | 
			
		||||
@@ -5782,6 +5782,27 @@ static int __init cgroup_disable(char *s
 | 
			
		||||
@@ -5798,6 +5798,27 @@ static int __init cgroup_disable(char *s
 | 
			
		||||
 }
 | 
			
		||||
 __setup("cgroup_disable=", cgroup_disable);
 | 
			
		||||
 
 | 
			
		||||
 
 | 
			
		||||
@@ -14,7 +14,7 @@ Signed-off-by: Eric Anholt <eric@anholt.net>
 | 
			
		||||
 | 
			
		||||
--- a/mm/page_alloc.c
 | 
			
		||||
+++ b/mm/page_alloc.c
 | 
			
		||||
@@ -6760,8 +6760,6 @@ int alloc_contig_range(unsigned long sta
 | 
			
		||||
@@ -6780,8 +6780,6 @@ int alloc_contig_range(unsigned long sta
 | 
			
		||||
 
 | 
			
		||||
 	/* Make sure the range is really isolated. */
 | 
			
		||||
 	if (test_pages_isolated(outer_start, end, false)) {
 | 
			
		||||
 
 | 
			
		||||
@@ -1,25 +0,0 @@
 | 
			
		||||
From be4e718cccf6909072eeab1032b1d9fb6dd92b43 Mon Sep 17 00:00:00 2001
 | 
			
		||||
From: Phil Elwell <phil@raspberrypi.org>
 | 
			
		||||
Date: Tue, 9 Feb 2016 09:52:13 +0000
 | 
			
		||||
Subject: [PATCH 147/170] pinctrl-bcm2835: Fix cut-and-paste error in "pull"
 | 
			
		||||
 parsing
 | 
			
		||||
 | 
			
		||||
The DT bindings for pinctrl-bcm2835 allow both the function and pull
 | 
			
		||||
to contain either one entry or one per pin. However, an error in the
 | 
			
		||||
DT parsing can cause failures if the number of pulls differs from the
 | 
			
		||||
number of functions.
 | 
			
		||||
---
 | 
			
		||||
 drivers/pinctrl/bcm/pinctrl-bcm2835.c | 2 +-
 | 
			
		||||
 1 file changed, 1 insertion(+), 1 deletion(-)
 | 
			
		||||
 | 
			
		||||
--- a/drivers/pinctrl/bcm/pinctrl-bcm2835.c
 | 
			
		||||
+++ b/drivers/pinctrl/bcm/pinctrl-bcm2835.c
 | 
			
		||||
@@ -802,7 +802,7 @@ static int bcm2835_pctl_dt_node_to_map(s
 | 
			
		||||
 		}
 | 
			
		||||
 		if (num_pulls) {
 | 
			
		||||
 			err = of_property_read_u32_index(np, "brcm,pull",
 | 
			
		||||
-					(num_funcs > 1) ? i : 0, &pull);
 | 
			
		||||
+					(num_pulls > 1) ? i : 0, &pull);
 | 
			
		||||
 			if (err)
 | 
			
		||||
 				goto out;
 | 
			
		||||
 			err = bcm2835_pctl_dt_node_to_map_pull(pc, np, pin,
 | 
			
		||||
@@ -17,7 +17,7 @@ The bcm2835-sdhost driver no longer needs this patch.
 | 
			
		||||
 | 
			
		||||
--- a/drivers/mmc/card/block.c
 | 
			
		||||
+++ b/drivers/mmc/card/block.c
 | 
			
		||||
@@ -1510,7 +1510,6 @@ static void mmc_blk_rw_rq_prep(struct mm
 | 
			
		||||
@@ -1518,7 +1518,6 @@ static void mmc_blk_rw_rq_prep(struct mm
 | 
			
		||||
 			brq->data.blocks = card->host->ops->multi_io_quirk(card,
 | 
			
		||||
 						(rq_data_dir(req) == READ) ?
 | 
			
		||||
 						MMC_DATA_READ : MMC_DATA_WRITE,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user