linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/5] non-urgent omap fixes for v4.11 merge window
@ 2017-01-24 18:05 Tony Lindgren
  2017-01-24 18:05 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Tony Lindgren @ 2017-01-24 18:05 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:

  Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/fixes-not-urgent-signed

for you to fetch changes up to 631af44c10f9430163296626c6134db16a4f51fb:

  ARM: OMAP3: Fix SoC detection of OMAP36/37 Family (2017-01-20 10:13:06 -0800)

----------------------------------------------------------------
Non-urgent fixes for omaps for v4.11 merge window. These all are
fixes for things that have never worked or have been broken for
a long time and nobody noticed:

- Fix omap3 off mode pull defines

- Allow multiple pdata quirks instead of just one

- Fix am335x and dm814x scm syscon to probe children too

- Fix compatible for ti81xx to allow use with 8250_omap as well

- Fix 8250_omap on omap5 by adding HWMOD_SWSUP_SIDLE_ACT flag

- Fix SoC detection for omap36/37 SoCs

----------------------------------------------------------------
Adam Ford (1):
      ARM: OMAP3: Fix SoC detection of OMAP36/37 Family

Tony Lindgren (4):
      ARM: dts: Fix omap3 off mode pull defines
      ARM: OMAP2+: Fix init for multiple quirks for the same SoC
      ARM: dts: Fix am335x and dm814x scm syscon to probe children
      ARM: dts: Fix compatible for ti81xx uarts for 8250

Vignesh R (1):
      ARM: OMAP5: Add HWMOD_SWSUP_SIDLE_ACT flag for UART

 arch/arm/boot/dts/am33xx.dtsi              |  3 ++-
 arch/arm/boot/dts/dm814x.dtsi              |  9 +++++----
 arch/arm/boot/dts/dm816x.dtsi              |  6 +++---
 arch/arm/mach-omap2/id.c                   | 10 +++++++++-
 arch/arm/mach-omap2/omap_hwmod_54xx_data.c |  8 ++++++--
 arch/arm/mach-omap2/pdata-quirks.c         |  1 -
 include/dt-bindings/pinctrl/omap.h         |  4 ++--
 7 files changed, 27 insertions(+), 14 deletions(-)

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

* [GIT PULL 2/5] omap soc changes for v4.11 merge window
  2017-01-24 18:05 [GIT PULL 1/5] non-urgent omap fixes for v4.11 merge window Tony Lindgren
@ 2017-01-24 18:05 ` Tony Lindgren
  2017-01-24 18:05 ` [GIT PULL 3/5] omap wkup_m3_ipc driver " Tony Lindgren
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2017-01-24 18:05 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:

  Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/soc-signed

for you to fetch changes up to 8c4bc910633d942b4422e8b264c39a48e230a261:

  ARM: OMAP: clock: Remove unused mpurate cmdline option (2017-01-24 07:20:02 -0800)

----------------------------------------------------------------
SoC changes for omaps for v4.11 merge window. This adds support
for keeping the interconnect target module active for uart if
earlycon is specified. And we're adding Aaro Koskinen as a
co-maintainer for omap1 to make sure things stay working for
omap1. The other changes are mostly clean-up of old legacy code:

- Remove unused omap_display_init()

- Make omapdss_find_dss_of_node() function static

- Add support for earlycon

- Tidy up omap1 usb logging output with pr_cont

- Make omap_otg_init() static

- Delete redundant CPU class checks for omap1

- Remove unused mpurate cmdline option that has not done
  anything for past 1.5 years at least

----------------------------------------------------------------
Aaro Koskinen (3):
      ARM: OMAP1: USB: tidy up logging output
      ARM: OMAP1: USB: make omap_otg_init() static
      ARM: OMAP1: USB: delete redundant CPU class checks

Andrew Murray (1):
      ARM: OMAP: clock: Remove unused mpurate cmdline option

Laurent Pinchart (2):
      ARM: OMAP2+: Remove unused omap_display_init() function
      ARM: OMAP2+: Make the omapdss_find_dss_of_node() function static

Lokesh Vutla (1):
      ARM: OMAP2+: omap_hwmod: Add support for earlycon

Tony Lindgren (2):
      MAINTAINERS: Add Aaro Koskinen as TI omap1 SoC co-maintainer
      Merge branch 'omap-for-v4.11/omap1' into omap-for-v4.11/soc

 MAINTAINERS                            |  19 ++-
 arch/arm/mach-omap1/clock.c            |  20 ---
 arch/arm/mach-omap1/clock.h            |   2 -
 arch/arm/mach-omap1/include/mach/usb.h |   2 -
 arch/arm/mach-omap1/usb.c              |  51 +++----
 arch/arm/mach-omap2/clock.c            |  61 --------
 arch/arm/mach-omap2/clock.h            |   4 -
 arch/arm/mach-omap2/display.c          | 258 +--------------------------------
 arch/arm/mach-omap2/display.h          |   7 -
 arch/arm/mach-omap2/omap_hwmod.c       |  33 +++++
 10 files changed, 74 insertions(+), 383 deletions(-)

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

* [GIT PULL 3/5] omap wkup_m3_ipc driver changes for v4.11 merge window
  2017-01-24 18:05 [GIT PULL 1/5] non-urgent omap fixes for v4.11 merge window Tony Lindgren
  2017-01-24 18:05 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
@ 2017-01-24 18:05 ` Tony Lindgren
  2017-01-24 18:05 ` [GIT PULL 4/5] omap device tree " Tony Lindgren
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2017-01-24 18:05 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:

  Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/drivers-signed

for you to fetch changes up to 36cc9fd9ce0fd0e4654890aa347d258616aef5fa:

  soc: ti: wkup_m3_ipc: Drop wait from wkup_m3_rproc_boot_thread (2017-01-06 08:37:39 -0800)

----------------------------------------------------------------
Just a single wkup_m3_ipc clean-up for v4.11 merge window.
We don't currently have anything else for drivers/soc to
merge, but I'd expect that to change as soon as we can start
moving PM code into drivers with the recently posted SRAM
changes. Anyways, sent as a separate pull request to make
it easy to group the ARM SoC pull requests.

----------------------------------------------------------------
Sarangdhar Joshi (1):
      soc: ti: wkup_m3_ipc: Drop wait from wkup_m3_rproc_boot_thread

 drivers/soc/ti/wkup_m3_ipc.c | 2 --
 1 file changed, 2 deletions(-)

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

* [GIT PULL 4/5] omap device tree changes for v4.11 merge window
  2017-01-24 18:05 [GIT PULL 1/5] non-urgent omap fixes for v4.11 merge window Tony Lindgren
  2017-01-24 18:05 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
  2017-01-24 18:05 ` [GIT PULL 3/5] omap wkup_m3_ipc driver " Tony Lindgren
@ 2017-01-24 18:05 ` Tony Lindgren
  2017-01-24 18:05 ` [GIT PULL 5/5] omap defconfig " Tony Lindgren
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2017-01-24 18:05 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:

  Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/dt-signed-v2

for you to fetch changes up to d8e166b4ad0e3626af0378cadb2d7ba41efa005a:

  ARM: dts: dra72/1-evm: add pcf8575 used for lcd (2017-01-23 11:01:13 -0800)

----------------------------------------------------------------
Device tree changes for omaps for v4.11 merge window. These
changes add earlycon stdout-path propety for the SoCs so far
tested with it. The other changes are addition of BeagleBone
green and making WLAN work on BeagleBone black wireless and
green wireless. The rest of the changes are the usual enabling
features on various devices:

- Enable devices on am335x-sl50

- Changes to dra7-evm boards to enable enable irqs for dp83867
  eth phys, add pinmux configuration for mmc, remov erratum
  i869 pinmux configurations, disable NAND support because of
  pin conflict, add pcf8575 used for lcd

- Remove NAND partition table for omap3-igep

- Configure USB Ethernet MAC from device tree for beagleboard
  xm, pandaboard, omap5-uevm and igepv5

- Configure am335x-chilisom to wake from RTC-only state

- Update Nanobone for external FRAM chip

- Clean up n900 dts

- Update am335x-phycore and am335x-wega for various devices

- Changes for am57xx-beagle-x15 to implement rgmii2 errata

----------------------------------------------------------------
Enric Balletbo i Serra (6):
      ARM: dts: am335x-sl50: Remove I2C1 node.
      ARM: dts: am335x-sl50: Enable UART1.
      ARM: dts: am335x-sl50: Enable SPI0 interface and Flash Memory.
      ARM: dts: am335x-sl50: Enable BQ32000 Real Time Clock.
      ARM: dts: am335x-sl50: Enable the MCP23017 GPIO Expander.
      ARM: dts: am335x-sl50: Enable the Ambient Light Sensor.

Grygorii Strashko (2):
      ARM: dts: dra72-evm-revc: enable irqs for dp83867 eth phys
      ARM: dts: am57xx-beagle-x15: implement errata "Ethernet RGMII2 Limited to 10/100 Mbps"

Kishon Vijay Abraham I (1):
      ARM: dts: dra7-evm: add pinmux configuration for mmc1/2

Ladislav Michl (1):
      ARM: dts: omap3-igep: Remove NAND partition table

Laurent Pinchart (1):
      ARM: omap3: beagleboard-xm: dt: Add ethernet to the device tree

Lokesh Vutla (4):
      ARM: dts: am33xx: Add stdout-path property
      ARM: dts: am43xx: Add stdout-path property
      ARM: dts: am57xx: Add stdout-path property
      ARM: dts: dra7xx: Add stdout-path property

Marcin Niestroj (1):
      ARM: dts: am335x-chilisom: Wakeup from RTC-only state by power on event

Mark Jackson (1):
      ARM: dts: Update Nanobone dts file to add external FRAM chip

Pavel Machek (1):
      ARM: dts: n900: cleanup

Robert Nelson (4):
      ARM: dts: Move most of am335x-boneblack.dts to am335x-boneblack-common.dtsi
      ARM: dts: Add am335x-boneblack-wireless
      ARM: dts: Move most of am335x-bonegreen.dts to am335x-bonegreen-common.dtsi
      ARM: dts: Add am335x-bonegreen-wireless

Sekhar Nori (2):
      ARM: dts: dra7-evm: Remove pinmux configurations for erratum i869
      ARM: dts: dra72-evm: drop NAND support

Teresa Remmet (6):
      ARM: dts: am335x-phycore-som: Update compatible string for spi nor
      ARM: dts: am335x-phycore-som: Add i2c temp sensor
      ARM: dts: am335x-wega: Set USB0 mode to otg
      ARM: dts: am335x-phycore-som: Update ethernet phy node
      ARM: dts: am335x-wega: Update ethernet phy node
      ARM: dts: am335x-phycore-som: Remove partition tables

Tomi Valkeinen (1):
      ARM: dts: dra72/1-evm: add pcf8575 used for lcd

Tony Lindgren (4):
      ARM: dts: pandaboard: Allow bootloader to configure USB Ethernet MAC
      ARM: dts: omap5-uevm: Allow bootloader to configure USB Ethernet MAC
      ARM: dts: omap5-igep0050: Allow bootloader to configure USB Ethernet MAC
      ARM: dts: Configure BeagleBone peripheral USB VBUS irq

 arch/arm/boot/dts/Makefile                      |   2 +
 arch/arm/boot/dts/am335x-bone-common.dtsi       |   2 +
 arch/arm/boot/dts/am335x-boneblack-common.dtsi  | 163 ++++++++++++++
 arch/arm/boot/dts/am335x-boneblack-wireless.dts | 109 +++++++++
 arch/arm/boot/dts/am335x-boneblack.dts          | 155 +------------
 arch/arm/boot/dts/am335x-bonegreen-common.dtsi  |  44 ++++
 arch/arm/boot/dts/am335x-bonegreen-wireless.dts | 126 +++++++++++
 arch/arm/boot/dts/am335x-bonegreen.dts          |  38 +---
 arch/arm/boot/dts/am335x-chilisom.dtsi          |   8 +
 arch/arm/boot/dts/am335x-evm.dts                |   4 +
 arch/arm/boot/dts/am335x-evmsk.dts              |   4 +
 arch/arm/boot/dts/am335x-icev2.dts              |   4 +
 arch/arm/boot/dts/am335x-nano.dts               |  31 ++-
 arch/arm/boot/dts/am335x-phycore-som.dtsi       |  72 +-----
 arch/arm/boot/dts/am335x-sl50.dts               |  70 +++++-
 arch/arm/boot/dts/am335x-wega.dtsi              |   9 +-
 arch/arm/boot/dts/am437x-gp-evm.dts             |   4 +
 arch/arm/boot/dts/am437x-idk-evm.dts            |   4 +
 arch/arm/boot/dts/am437x-sk-evm.dts             |   4 +
 arch/arm/boot/dts/am43x-epos-evm.dts            |   4 +
 arch/arm/boot/dts/am57xx-beagle-x15-common.dtsi |  18 +-
 arch/arm/boot/dts/am57xx-beagle-x15-revb1.dts   |   5 +
 arch/arm/boot/dts/am57xx-beagle-x15.dts         |   5 +
 arch/arm/boot/dts/am57xx-idk-common.dtsi        |   4 +
 arch/arm/boot/dts/dra7-evm.dts                  | 286 +++---------------------
 arch/arm/boot/dts/dra71-evm.dts                 |   5 +
 arch/arm/boot/dts/dra72-evm-common.dtsi         |  20 +-
 arch/arm/boot/dts/dra72-evm-revc.dts            |   6 +-
 arch/arm/boot/dts/omap3-beagle-xm.dts           |  16 ++
 arch/arm/boot/dts/omap3-igep.dtsi               |  21 --
 arch/arm/boot/dts/omap3-n900.dts                |   3 +-
 arch/arm/boot/dts/omap4-panda-common.dtsi       |  16 ++
 arch/arm/boot/dts/omap5-igep0050.dts            |  21 ++
 arch/arm/boot/dts/omap5-uevm.dts                |  21 ++
 34 files changed, 759 insertions(+), 545 deletions(-)
 create mode 100644 arch/arm/boot/dts/am335x-boneblack-common.dtsi
 create mode 100644 arch/arm/boot/dts/am335x-boneblack-wireless.dts
 create mode 100644 arch/arm/boot/dts/am335x-bonegreen-common.dtsi
 create mode 100644 arch/arm/boot/dts/am335x-bonegreen-wireless.dts

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

* [GIT PULL 5/5] omap defconfig changes for v4.11 merge window
  2017-01-24 18:05 [GIT PULL 1/5] non-urgent omap fixes for v4.11 merge window Tony Lindgren
                   ` (2 preceding siblings ...)
  2017-01-24 18:05 ` [GIT PULL 4/5] omap device tree " Tony Lindgren
@ 2017-01-24 18:05 ` Tony Lindgren
       [not found] ` <58879774.9c41620a.96bae.6ba2SMTPIN_ADDED_BROKEN@mx.google.com>
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Tony Lindgren @ 2017-01-24 18:05 UTC (permalink / raw)
  To: linux-arm-kernel

The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:

  Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/defconfig-signed

for you to fetch changes up to ac57feb25833a6f3832a436d28808ffc16c672b3:

  ARM: omap2plus_defconfig: Enable support for RTC M41T80 (2017-01-24 07:04:11 -0800)

----------------------------------------------------------------
Few omap2plus_defconfig changes for v4.11 merge window:

- Switch to use LIS3LV02DL IIO driver instead of the
  LIS3LC02D misc driver

- Set CONFIG_SERIAL_8250_RUNTIME_UARTS=6 to avoid runtime
  warnings on omap5 and dra7

- Enable ksz9021 phy and m41t80 rtc as they are used at
  least on phyCORE-AM335x

----------------------------------------------------------------
Linus Walleij (1):
      ARM: defconfig: omap2plus: switch LIS3LV02DL driver

Teresa Remmet (2):
      ARM: omap2plus_defconfig: Enable support for micrell phys
      ARM: omap2plus_defconfig: Enable support for RTC M41T80

Tony Lindgren (1):
      ARM: omap2plus_defconfig: Fix probe errors on UARTs 5 and 6

 arch/arm/configs/omap2plus_defconfig | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

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

* [GIT PULL 2/5] omap soc changes for v4.11 merge window
       [not found] ` <58879774.9c41620a.96bae.6ba2SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2017-01-30  1:15   ` Olof Johansson
  0 siblings, 0 replies; 9+ messages in thread
From: Olof Johansson @ 2017-01-30  1:15 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jan 24, 2017 at 10:05:15AM -0800, Tony Lindgren wrote:
> The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:
> 
>   Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/soc-signed
> 
> for you to fetch changes up to 8c4bc910633d942b4422e8b264c39a48e230a261:
> 
>   ARM: OMAP: clock: Remove unused mpurate cmdline option (2017-01-24 07:20:02 -0800)
> 
> ----------------------------------------------------------------
> SoC changes for omaps for v4.11 merge window. This adds support
> for keeping the interconnect target module active for uart if
> earlycon is specified. And we're adding Aaro Koskinen as a
> co-maintainer for omap1 to make sure things stay working for
> omap1. The other changes are mostly clean-up of old legacy code:
> 
> - Remove unused omap_display_init()
> 
> - Make omapdss_find_dss_of_node() function static
> 
> - Add support for earlycon
> 
> - Tidy up omap1 usb logging output with pr_cont
> 
> - Make omap_otg_init() static
> 
> - Delete redundant CPU class checks for omap1
> 
> - Remove unused mpurate cmdline option that has not done
>   anything for past 1.5 years at least
> 

Merged, thanks!


-Olof

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

* [GIT PULL 3/5] omap wkup_m3_ipc driver changes for v4.11 merge window
       [not found] ` <58879775.06c9620a.ef45c.5d29SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2017-01-30  1:16   ` Olof Johansson
  0 siblings, 0 replies; 9+ messages in thread
From: Olof Johansson @ 2017-01-30  1:16 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jan 24, 2017 at 10:05:16AM -0800, Tony Lindgren wrote:
> The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:
> 
>   Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/drivers-signed
> 
> for you to fetch changes up to 36cc9fd9ce0fd0e4654890aa347d258616aef5fa:
> 
>   soc: ti: wkup_m3_ipc: Drop wait from wkup_m3_rproc_boot_thread (2017-01-06 08:37:39 -0800)
> 
> ----------------------------------------------------------------
> Just a single wkup_m3_ipc clean-up for v4.11 merge window.
> We don't currently have anything else for drivers/soc to
> merge, but I'd expect that to change as soon as we can start
> moving PM code into drivers with the recently posted SRAM
> changes. Anyways, sent as a separate pull request to make
> it easy to group the ARM SoC pull requests.
> 
> ----------------------------------------------------------------
> Sarangdhar Joshi (1):
>       soc: ti: wkup_m3_ipc: Drop wait from wkup_m3_rproc_boot_thread
> 
>  drivers/soc/ti/wkup_m3_ipc.c | 2 --
>  1 file changed, 2 deletions(-)

Merged, thanks!


-Olof

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

* [GIT PULL 4/5] omap device tree changes for v4.11 merge window
       [not found] ` <58879776.d8cc620a.90442.3f64SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2017-01-30  1:17   ` Olof Johansson
  0 siblings, 0 replies; 9+ messages in thread
From: Olof Johansson @ 2017-01-30  1:17 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jan 24, 2017 at 10:05:17AM -0800, Tony Lindgren wrote:
> The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:
> 
>   Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/dt-signed-v2
> 
> for you to fetch changes up to d8e166b4ad0e3626af0378cadb2d7ba41efa005a:
> 
>   ARM: dts: dra72/1-evm: add pcf8575 used for lcd (2017-01-23 11:01:13 -0800)
> 
> ----------------------------------------------------------------
> Device tree changes for omaps for v4.11 merge window. These
> changes add earlycon stdout-path propety for the SoCs so far
> tested with it. The other changes are addition of BeagleBone
> green and making WLAN work on BeagleBone black wireless and
> green wireless. The rest of the changes are the usual enabling
> features on various devices:

Merged, thanks!


-Olof

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

* [GIT PULL 5/5] omap defconfig changes for v4.11 merge window
       [not found] ` <58879776.0ada620a.ff7f0.43b9SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2017-01-30  1:18   ` Olof Johansson
  0 siblings, 0 replies; 9+ messages in thread
From: Olof Johansson @ 2017-01-30  1:18 UTC (permalink / raw)
  To: linux-arm-kernel

On Tue, Jan 24, 2017 at 10:05:18AM -0800, Tony Lindgren wrote:
> The following changes since commit 7ce7d89f48834cefece7804d38fc5d85382edf77:
> 
>   Linux 4.10-rc1 (2016-12-25 16:13:08 -0800)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap tags/omap-for-v4.11/defconfig-signed
> 
> for you to fetch changes up to ac57feb25833a6f3832a436d28808ffc16c672b3:
> 
>   ARM: omap2plus_defconfig: Enable support for RTC M41T80 (2017-01-24 07:04:11 -0800)
> 
> ----------------------------------------------------------------
> Few omap2plus_defconfig changes for v4.11 merge window:
> 
> - Switch to use LIS3LV02DL IIO driver instead of the
>   LIS3LC02D misc driver
> 
> - Set CONFIG_SERIAL_8250_RUNTIME_UARTS=6 to avoid runtime
>   warnings on omap5 and dra7
> 
> - Enable ksz9021 phy and m41t80 rtc as they are used at
>   least on phyCORE-AM335x

Merged, thanks.


-Olof

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

end of thread, other threads:[~2017-01-30  1:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-24 18:05 [GIT PULL 1/5] non-urgent omap fixes for v4.11 merge window Tony Lindgren
2017-01-24 18:05 ` [GIT PULL 2/5] omap soc changes " Tony Lindgren
2017-01-24 18:05 ` [GIT PULL 3/5] omap wkup_m3_ipc driver " Tony Lindgren
2017-01-24 18:05 ` [GIT PULL 4/5] omap device tree " Tony Lindgren
2017-01-24 18:05 ` [GIT PULL 5/5] omap defconfig " Tony Lindgren
     [not found] ` <58879774.9c41620a.96bae.6ba2SMTPIN_ADDED_BROKEN@mx.google.com>
2017-01-30  1:15   ` [GIT PULL 2/5] omap soc " Olof Johansson
     [not found] ` <58879775.06c9620a.ef45c.5d29SMTPIN_ADDED_BROKEN@mx.google.com>
2017-01-30  1:16   ` [GIT PULL 3/5] omap wkup_m3_ipc driver " Olof Johansson
     [not found] ` <58879776.d8cc620a.90442.3f64SMTPIN_ADDED_BROKEN@mx.google.com>
2017-01-30  1:17   ` [GIT PULL 4/5] omap device tree " Olof Johansson
     [not found] ` <58879776.0ada620a.ff7f0.43b9SMTPIN_ADDED_BROKEN@mx.google.com>
2017-01-30  1:18   ` [GIT PULL 5/5] omap defconfig " Olof Johansson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).