All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 for-4.9 00/32] Stable commits picked up from lede project
@ 2017-04-05 10:31 Amit Pundir
  2017-04-05 10:31 ` [PATCH v2 for-4.9 01/32] ARM: BCM5301X: Add back handler ignoring external imprecise aborts Amit Pundir
                   ` (32 more replies)
  0 siblings, 33 replies; 52+ messages in thread
From: Amit Pundir @ 2017-04-05 10:31 UTC (permalink / raw)
  To: stable; +Cc: gregkh

Hi Greg,

2nd attempt at sending stable commits taken from lede source tree
https://github.com/lede-project/source for your consideration for
4.9.y. I Forgot to update the Subject line of the individual patches
in my 1st attempt. They didn't explicitly mention that they were
targeted for stable-4.9 and that led to some confusion.

Cherry-picked and build tested on Linux 4.9.20 for
ARCH=arm/arm64/i386/x86_64 + allmodconfig.

Arnd Bergmann (1):
  rt2500usb: don't mark register accesses as inline

Bjorn Helgaas (1):
  PCI: iproc: Save host bridge window resource in struct iproc_pcie

Boris Brezillon (3):
  clk: bcm: Support rate change propagation on bcm2835 clocks
  clk: bcm: Allow rate change propagation to PLLH_AUX on VEC clock
  clk: bcm: Fix 'maybe-uninitialized' warning in
    bcm2835_clock_choose_div_and_prate()

Eric Anholt (3):
  clk: bcm2835: Don't rate change PLLs on behalf of DSI PLL dividers.
  clk: bcm2835: Register the DSI0/DSI1 pixel clocks.
  clk: bcm2835: Add leaf clock measurement support, disabled by default

Felix Fietkau (1):
  MIPS: Lantiq: Fix cascaded IRQ setup

John Youn (1):
  usb: dwc2: Remove unnecessary kfree

Jon Mason (1):
  ARM: dts: BCM5301X: Correct GIC_PPI interrupt flags

Matthias Reichl (1):
  dmaengine: bcm2835: Fix cyclic DMA period splitting

Noralf Trønnes (4):
  i2c: bcm2835: Fix hang for writing messages larger than 16 bytes
  i2c: bcm2835: Protect against unexpected TXW/RXR interrupts
  i2c: bcm2835: Use dev_dbg logging on transfer errors
  i2c: bcm2835: Can't support I2C_M_IGNORE_NAK

Rafał Miłecki (10):
  ARM: BCM5301X: Add back handler ignoring external imprecise aborts
  mtd: bcm47xxpart: fix parsing first block after aligned TRX
  net: add devm version of alloc_etherdev_mqs function
  net: bgmac: allocate struct bgmac just once & don't copy it
  net: bgmac: drop struct bcma_mdio we don't need anymore
  brcmfmac: check brcmf_bus_get_memdump result for error
  brcmfmac: be more verbose when PSM's watchdog fires
  brcmfmac: merge two brcmf_err macros into one
  brcmfmac: switch to C function (__brcmf_err) for printing errors
  brcmfmac: merge two remaining brcmf_err macros

Stanislaw Gruszka (3):
  rt2x00usb: do not anchor rx and tx urb's
  rt2x00usb: fix anchor initialization
  rt2x00: avoid introducing a USB dependency in the rt2x00lib module

Tobias Klauser (1):
  brcmfmac: Use net_device_stats from struct net_device

Tobias Wolf (1):
  of: Add check to of_scan_flat_dt() before accessing
    initial_boot_params

Vishal Thanki (1):
  rt2x00: Fix incorrect usage of CONFIG_RT2X00_LIB_USB

 .../bindings/clock/brcm,bcm2835-cprman.txt         |  15 +-
 arch/arm/boot/dts/bcm5301x.dtsi                    |   4 +-
 arch/arm/mach-bcm/bcm_5301x.c                      |  28 ++
 arch/mips/lantiq/irq.c                             |  38 +--
 drivers/clk/bcm/clk-bcm2835.c                      | 375 ++++++++++++++++++---
 drivers/dma/bcm2835-dma.c                          |   5 +-
 drivers/i2c/busses/i2c-bcm2835.c                   |  68 ++--
 drivers/mtd/bcm47xxpart.c                          |  10 +-
 drivers/net/ethernet/broadcom/bgmac-bcma-mdio.c    |  98 +++---
 drivers/net/ethernet/broadcom/bgmac-bcma.c         |   6 +-
 drivers/net/ethernet/broadcom/bgmac-platform.c     |   2 +-
 drivers/net/ethernet/broadcom/bgmac.c              |  25 +-
 drivers/net/ethernet/broadcom/bgmac.h              |   5 +-
 .../wireless/broadcom/brcm80211/brcmfmac/common.c  |  16 +
 .../wireless/broadcom/brcm80211/brcmfmac/core.c    |  26 +-
 .../wireless/broadcom/brcm80211/brcmfmac/core.h    |   2 -
 .../wireless/broadcom/brcm80211/brcmfmac/debug.c   |  35 +-
 .../wireless/broadcom/brcm80211/brcmfmac/debug.h   |  24 +-
 drivers/net/wireless/ralink/rt2x00/rt2500usb.c     |  19 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00dev.c     |  23 +-
 drivers/net/wireless/ralink/rt2x00/rt2x00usb.c     |  22 +-
 drivers/of/fdt.c                                   |   9 +-
 drivers/pci/host/pcie-iproc-bcma.c                 |  24 +-
 drivers/pci/host/pcie-iproc-platform.c             |  19 +-
 drivers/pci/host/pcie-iproc.h                      |   1 +
 drivers/usb/dwc2/hcd.c                             |   1 -
 include/dt-bindings/clock/bcm2835.h                |   2 +
 include/linux/etherdevice.h                        |   5 +
 net/ethernet/eth.c                                 |  28 ++
 29 files changed, 648 insertions(+), 287 deletions(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 52+ messages in thread

end of thread, other threads:[~2017-04-12 14:30 UTC | newest]

Thread overview: 52+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-05 10:31 [PATCH v2 for-4.9 00/32] Stable commits picked up from lede project Amit Pundir
2017-04-05 10:31 ` [PATCH v2 for-4.9 01/32] ARM: BCM5301X: Add back handler ignoring external imprecise aborts Amit Pundir
2017-04-05 10:31 ` [PATCH v2 for-4.9 02/32] ARM: dts: BCM5301X: Correct GIC_PPI interrupt flags Amit Pundir
2017-04-06  7:33   ` Greg KH
2017-04-05 10:31 ` [PATCH v2 for-4.9 03/32] PCI: iproc: Save host bridge window resource in struct iproc_pcie Amit Pundir
2017-04-06  7:33   ` Greg KH
2017-04-05 10:31 ` [PATCH v2 for-4.9 04/32] MIPS: Lantiq: Fix cascaded IRQ setup Amit Pundir
2017-04-06  7:34   ` Greg KH
2017-04-06  9:29   ` James Hogan
2017-04-06  9:29     ` James Hogan
2017-04-06 10:53     ` Amit Pundir
2017-04-06 11:25       ` James Hogan
2017-04-06 11:25         ` James Hogan
2017-04-06 11:44         ` Amit Pundir
2017-04-05 10:31 ` [PATCH v2 for-4.9 05/32] i2c: bcm2835: Fix hang for writing messages larger than 16 bytes Amit Pundir
2017-04-05 10:31 ` [PATCH v2 for-4.9 06/32] i2c: bcm2835: Protect against unexpected TXW/RXR interrupts Amit Pundir
2017-04-05 10:31 ` [PATCH v2 for-4.9 07/32] i2c: bcm2835: Use dev_dbg logging on transfer errors Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 08/32] i2c: bcm2835: Can't support I2C_M_IGNORE_NAK Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 09/32] clk: bcm: Support rate change propagation on bcm2835 clocks Amit Pundir
2017-04-12 13:17   ` Greg KH
2017-04-12 13:33     ` Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 10/32] clk: bcm: Allow rate change propagation to PLLH_AUX on VEC clock Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 11/32] clk: bcm: Fix 'maybe-uninitialized' warning in bcm2835_clock_choose_div_and_prate() Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 12/32] clk: bcm2835: Don't rate change PLLs on behalf of DSI PLL dividers Amit Pundir
2017-04-06 16:53   ` Eric Anholt
2017-04-05 10:32 ` [PATCH v2 for-4.9 13/32] clk: bcm2835: Register the DSI0/DSI1 pixel clocks Amit Pundir
2017-04-12 13:15   ` Greg KH
2017-04-05 10:32 ` [PATCH v2 for-4.9 14/32] clk: bcm2835: Add leaf clock measurement support, disabled by default Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 15/32] dmaengine: bcm2835: Fix cyclic DMA period splitting Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 16/32] usb: dwc2: Remove unnecessary kfree Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 17/32] mtd: bcm47xxpart: fix parsing first block after aligned TRX Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 18/32] net: add devm version of alloc_etherdev_mqs function Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 19/32] net: bgmac: allocate struct bgmac just once & don't copy it Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 20/32] net: bgmac: drop struct bcma_mdio we don't need anymore Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 21/32] of: Add check to of_scan_flat_dt() before accessing initial_boot_params Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 22/32] rt2500usb: don't mark register accesses as inline Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 23/32] brcmfmac: check brcmf_bus_get_memdump result for error Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 24/32] brcmfmac: be more verbose when PSM's watchdog fires Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 25/32] brcmfmac: merge two brcmf_err macros into one Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 26/32] brcmfmac: switch to C function (__brcmf_err) for printing errors Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 27/32] brcmfmac: merge two remaining brcmf_err macros Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 28/32] rt2x00usb: do not anchor rx and tx urb's Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 29/32] rt2x00usb: fix anchor initialization Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 30/32] brcmfmac: Use net_device_stats from struct net_device Amit Pundir
2017-04-12 13:18   ` Greg KH
2017-04-12 13:46     ` Tobias Klauser
2017-04-12 13:52     ` Kalle Valo
2017-04-12 14:29       ` Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 31/32] rt2x00: Fix incorrect usage of CONFIG_RT2X00_LIB_USB Amit Pundir
2017-04-05 10:32 ` [PATCH v2 for-4.9 32/32] rt2x00: avoid introducing a USB dependency in the rt2x00lib module Amit Pundir
2017-04-06  7:29 ` [PATCH v2 for-4.9 00/32] Stable commits picked up from lede project Greg KH
2017-04-06  7:44   ` Amit Pundir

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.