aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/cns3xxx/patches-4.4
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2016-03-17 21:41:07 +0000
committerHauke Mehrtens <hauke@openwrt.org>2016-03-17 21:41:07 +0000
commit7e0f1bfdc44444063d493255a0c445de67015723 (patch)
tree32e3614b5117813c28f75172bcbcb72654dbbb95 /target/linux/cns3xxx/patches-4.4
parent7f6af9c8c59afd22c97fbb0151e2bc0f5f3ceefd (diff)
downloadmaster-187ad058-7e0f1bfdc44444063d493255a0c445de67015723.tar.gz
master-187ad058-7e0f1bfdc44444063d493255a0c445de67015723.tar.bz2
master-187ad058-7e0f1bfdc44444063d493255a0c445de67015723.zip
kernel: update kernel 4.4 to version 4.4.6
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@49032 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/cns3xxx/patches-4.4')
-rw-r--r--target/linux/cns3xxx/patches-4.4/032-pcie_no_of_domain_fix.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/target/linux/cns3xxx/patches-4.4/032-pcie_no_of_domain_fix.patch b/target/linux/cns3xxx/patches-4.4/032-pcie_no_of_domain_fix.patch
deleted file mode 100644
index 177afa1888..0000000000
--- a/target/linux/cns3xxx/patches-4.4/032-pcie_no_of_domain_fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/drivers/pci/pci.c
-+++ b/drivers/pci/pci.c
-@@ -4772,7 +4772,10 @@ int pci_get_new_domain_nr(void)
- void pci_bus_assign_domain_nr(struct pci_bus *bus, struct device *parent)
- {
- static int use_dt_domains = -1;
-- int domain = of_get_pci_domain_nr(parent->of_node);
-+ int domain = -1;
-+
-+ if (parent && parent->of_node)
-+ domain = of_get_pci_domain_nr(parent->of_node);
-
- /*
- * Check DT domain and use_dt_domains values.