mbox series

[PULL,REQUEST] i2c for 4.14

Message ID 20170915124813.7l526w2s36qmiqzn@ninjato
State Accepted
Headers show
Series [PULL,REQUEST] i2c for 4.14 | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git i2c/for-next

Message

Wolfram Sang Sept. 15, 2017, 12:48 p.m. UTC
Linus,

I2C has two more, new drivers: Altera FPGA and STM32F7.

Please pull.

Thanks,

   Wolfram


The following changes since commit 46c1e79fee417f151547aa46fae04ab06cb666f4:

  Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip (2017-09-13 12:24:20 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git i2c/for-next

for you to fetch changes up to aeb068c57214858b638d5ee627bb4a831f98771e:

  i2c: i2c-stm32f7: add driver (2017-09-14 17:34:43 +0200)

----------------------------------------------------------------
Pierre-Yves MORDRET (3):
      dt-bindings: i2c-stm32: Document the STM32F7 I2C bindings
      i2c: i2c-stm32f4: use generic definition of speed enum
      i2c: i2c-stm32f7: add driver

Thor Thayer (2):
      dt-bindings: i2c: Add Altera I2C Controller
      i2c: altera: Add Altera I2C Controller driver


with much appreciated quality assurance from
----------------------------------------------------------------
Andy Shevchenko (1):
      (Rev.) i2c: altera: Add Altera I2C Controller driver

Ludovic BARRE (1):
      (Rev.) i2c: i2c-stm32f4: use generic definition of speed enum

 .../devicetree/bindings/i2c/i2c-altera.txt         |  39 +
 .../devicetree/bindings/i2c/i2c-stm32.txt          |  29 +-
 MAINTAINERS                                        |   5 +
 drivers/i2c/busses/Kconfig                         |  20 +
 drivers/i2c/busses/Makefile                        |   2 +
 drivers/i2c/busses/i2c-altera.c                    | 511 +++++++++++
 drivers/i2c/busses/i2c-stm32.h                     |  20 +
 drivers/i2c/busses/i2c-stm32f4.c                   |  18 +-
 drivers/i2c/busses/i2c-stm32f7.c                   | 972 +++++++++++++++++++++
 9 files changed, 1602 insertions(+), 14 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/i2c/i2c-altera.txt
 create mode 100644 drivers/i2c/busses/i2c-altera.c
 create mode 100644 drivers/i2c/busses/i2c-stm32.h
 create mode 100644 drivers/i2c/busses/i2c-stm32f7.c