mbox series

[GIT,PULL] ARM: SoC fixes

Message ID 20190728063715.ensdmo7jyimrsez4@localhost (mailing list archive)
State Superseded, archived
Commit 7bd9d465140a93c0a21ba2d2f426451c78bfcc7d
Headers show
Series [GIT,PULL] ARM: SoC fixes | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git tags/armsoc-fixes

Message

Olof Johansson July 28, 2019, 6:37 a.m. UTC
Hi Linus,

The following changes since commit 5f9e832c137075045d15cd6899ab0505cfb2ca4b:

  Linus 5.3-rc1 (2019-07-21 14:05:38 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git tags/armsoc-fixes

for you to fetch changes up to 7bd9d465140a93c0a21ba2d2f426451c78bfcc7d:

  Merge tag 'imx-fixes-5.3' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into arm/fixes (2019-07-23 10:13:24 -0700)

----------------------------------------------------------------
ARM: SoC fixes

Here's the first batch of fixes for this release cycle.

Main diffstat here is the re-deletion of netx. I messed up and most
likely didn't remove the files from the index when I test-merged this
and saw conflicts, and from there on out 'git rerere' remembered the
mistake and I missed checking it. Here it's done again as expected.

Besides that:

 - A defconfig refresh + enabling of new drivers for u8500

 - i.MX fixlets for i2c/SAI/pinmux

 - sleep.S build fix for Davinci

 - Broadcom devicetree build/warning fix

----------------------------------------------------------------
Anson Huang (1):
      arm64: dts: imx8mm: Correct SAI3 RXC/TXFS pin's mux option #1

Arnd Bergmann (2):
      ARM: davinci: fix sleep.S build error on ARMv4
      ARM: dts: bcm: bcm47094: add missing #cells for mdio-bus-mux

Fabio Estevam (1):
      ARM: dts: imx7ulp: Fix usb-phy unit address format

Linus Walleij (3):
      ARM: Delete netx a second time
      ARM: defconfig: u8500: Refresh defconfig
      ARM: defconfig: u8500: Add new drivers

Lucas Stach (1):
      arm64: dts: imx8mq: fix SAI compatible

Olof Johansson (1):
      Merge tag 'imx-fixes-5.3' of git://git.kernel.org/.../shawnguo/linux into arm/fixes

Sébastien Szymanski (1):
      ARM: dts: imx6ul: fix clock frequency property name of I2C buses

 arch/arm/Kconfig.debug                          |   5 -
 arch/arm/boot/dts/bcm47094-linksys-panamera.dts |   3 +
 arch/arm/boot/dts/imx6ul-14x14-evk.dtsi         |   2 +-
 arch/arm/boot/dts/imx6ul-geam.dts               |   2 +-
 arch/arm/boot/dts/imx6ul-isiot.dtsi             |   2 +-
 arch/arm/boot/dts/imx6ul-pico-hobbit.dts        |   2 +-
 arch/arm/boot/dts/imx6ul-pico-pi.dts            |   4 +-
 arch/arm/boot/dts/imx7ulp.dtsi                  |   2 +-
 arch/arm/configs/u8500_defconfig                |  34 +-
 arch/arm/mach-davinci/sleep.S                   |   1 +
 arch/arm/mach-netx/Kconfig                      |  22 --
 arch/arm/mach-netx/Makefile                     |  13 -
 arch/arm/mach-netx/Makefile.boot                |   3 -
 arch/arm/mach-netx/fb.c                         |  65 ----
 arch/arm/mach-netx/fb.h                         |  12 -
 arch/arm/mach-netx/generic.c                    | 182 ----------
 arch/arm/mach-netx/generic.h                    |  14 -
 arch/arm/mach-netx/include/mach/hardware.h      |  27 --
 arch/arm/mach-netx/include/mach/irqs.h          |  58 ----
 arch/arm/mach-netx/include/mach/netx-regs.h     | 420 ------------------------
 arch/arm/mach-netx/include/mach/pfifo.h         |  42 ---
 arch/arm/mach-netx/include/mach/uncompress.h    |  63 ----
 arch/arm/mach-netx/include/mach/xc.h            |  30 --
 arch/arm/mach-netx/nxdb500.c                    | 197 -----------
 arch/arm/mach-netx/nxdkn.c                      |  90 -----
 arch/arm/mach-netx/nxeb500hmi.c                 | 174 ----------
 arch/arm/mach-netx/pfifo.c                      |  56 ----
 arch/arm/mach-netx/time.c                       | 141 --------
 arch/arm/mach-netx/xc.c                         | 246 --------------
 arch/arm64/boot/dts/freescale/imx8mm-pinfunc.h  |   4 +-
 arch/arm64/boot/dts/freescale/imx8mq.dtsi       |   3 +-
 31 files changed, 33 insertions(+), 1886 deletions(-)
 delete mode 100644 arch/arm/mach-netx/Kconfig
 delete mode 100644 arch/arm/mach-netx/Makefile
 delete mode 100644 arch/arm/mach-netx/Makefile.boot
 delete mode 100644 arch/arm/mach-netx/fb.c
 delete mode 100644 arch/arm/mach-netx/fb.h
 delete mode 100644 arch/arm/mach-netx/generic.c
 delete mode 100644 arch/arm/mach-netx/generic.h
 delete mode 100644 arch/arm/mach-netx/include/mach/hardware.h
 delete mode 100644 arch/arm/mach-netx/include/mach/irqs.h
 delete mode 100644 arch/arm/mach-netx/include/mach/netx-regs.h
 delete mode 100644 arch/arm/mach-netx/include/mach/pfifo.h
 delete mode 100644 arch/arm/mach-netx/include/mach/uncompress.h
 delete mode 100644 arch/arm/mach-netx/include/mach/xc.h
 delete mode 100644 arch/arm/mach-netx/nxdb500.c
 delete mode 100644 arch/arm/mach-netx/nxdkn.c
 delete mode 100644 arch/arm/mach-netx/nxeb500hmi.c
 delete mode 100644 arch/arm/mach-netx/pfifo.c
 delete mode 100644 arch/arm/mach-netx/time.c
 delete mode 100644 arch/arm/mach-netx/xc.c
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.

View/Reply Online (#194): https://linux.kernel.org/g/patchwork-soc/message/194
Mute This Topic: https://linux.kernel.org/mt/32629956/1554929
Group Owner: patchwork-soc+owner@linux.kernel.org
Unsubscribe: https://linux.kernel.org/g/patchwork-soc/unsub  [patchwork-linux-kernel-org@patchwork.kernel.org]
-=-=-=-=-=-=-=-=-=-=-=-

Comments

pr-tracker-bot@kernel.org July 28, 2019, 5:30 p.m. UTC | #1
The pull request you sent on Sat, 27 Jul 2019 23:37:15 -0700:

> git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git tags/armsoc-fixes

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/5bb575bcc6d1564340f969c5aa2bff8a500b239f

Thank you!