diff options
author | Mathias Kresin <dev@kresin.me> | 2018-03-21 08:39:41 +0100 |
---|---|---|
committer | Mathias Kresin <dev@kresin.me> | 2018-05-17 07:40:19 +0200 |
commit | d7b7483343b5c7f157a2a97244ce9e60f4260e43 (patch) | |
tree | 75acc8b61427a13aed054ac48b1a284f80bfbf6a /target/linux/lantiq/patches-4.9/0154-lantiq-pci-bar11mask-fix.patch | |
parent | 0678cc850ccc068ba33eb87f5f1bf8294a87e611 (diff) | |
download | upstream-d7b7483343b5c7f157a2a97244ce9e60f4260e43.tar.gz upstream-d7b7483343b5c7f157a2a97244ce9e60f4260e43.tar.bz2 upstream-d7b7483343b5c7f157a2a97244ce9e60f4260e43.zip |
lantiq: switch to kernel 4.14
Use kernel 4.14 by default.
Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/lantiq/patches-4.9/0154-lantiq-pci-bar11mask-fix.patch')
-rw-r--r-- | target/linux/lantiq/patches-4.9/0154-lantiq-pci-bar11mask-fix.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/target/linux/lantiq/patches-4.9/0154-lantiq-pci-bar11mask-fix.patch b/target/linux/lantiq/patches-4.9/0154-lantiq-pci-bar11mask-fix.patch deleted file mode 100644 index d0acd4bb10..0000000000 --- a/target/linux/lantiq/patches-4.9/0154-lantiq-pci-bar11mask-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/arch/mips/pci/pci-lantiq.c -+++ b/arch/mips/pci/pci-lantiq.c -@@ -61,6 +61,8 @@ - #define ltq_pci_cfg_w32(x, y) ltq_w32((x), ltq_pci_mapped_cfg + (y)) - #define ltq_pci_cfg_r32(x) ltq_r32(ltq_pci_mapped_cfg + (x)) - -+extern u32 max_low_pfn; -+ - __iomem void *ltq_pci_mapped_cfg; - static __iomem void *ltq_pci_membase; - -@@ -86,8 +88,8 @@ static inline u32 ltq_calc_bar11mask(voi - u32 mem, bar11mask; - - /* BAR11MASK value depends on available memory on system. */ -- mem = get_num_physpages() * PAGE_SIZE; -- bar11mask = (0x0ffffff0 & ~((1 << (fls(mem) - 1)) - 1)) | 8; -+ mem = max_low_pfn << PAGE_SHIFT; -+ bar11mask = ((-roundup_pow_of_two(mem)) & 0x0F000000) | 8; - - return bar11mask; - } |