Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1566708 > unrolled thread
| Started by | Mika Westerberg <mika.westerberg@linux.intel.com> |
|---|---|
| First post | 2017-01-25 17:00 +0100 |
| Last post | 2017-01-26 13:30 +0100 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [GIT PULL] Immutable branch between MFD and MTD due for the v4.11 merge window Mika Westerberg <mika.westerberg@linux.intel.com> - 2017-01-25 17:00 +0100
Re: [GIT PULL] Immutable branch between MFD and MTD due for the v4.11 merge window Cyrille Pitchen <cyrille.pitchen@atmel.com> - 2017-01-25 18:20 +0100
Re: [GIT PULL] Immutable branch between MFD and MTD due for the v4.11 merge window Mika Westerberg <mika.westerberg@linux.intel.com> - 2017-01-25 18:30 +0100
Re: [GIT PULL] Immutable branch between MFD and MTD due for the v4.11 merge window Lee Jones <lee.jones@linaro.org> - 2017-01-26 13:30 +0100
| From | Mika Westerberg <mika.westerberg@linux.intel.com> |
|---|---|
| Date | 2017-01-25 17:00 +0100 |
| Subject | Re: [GIT PULL] Immutable branch between MFD and MTD due for the v4.11 merge window |
| Message-ID | <t3y9k-3Do-27@gated-at.bofh.it> |
On Tue, Jan 03, 2017 at 05:37:50PM +0000, Lee Jones wrote: > MTD Maintainers, > > Enjoy! > > 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/lee/mfd.git ib-mfd-mtd-v4.11 > > for you to fetch changes up to 87eb832ae9748fab00588b98c2e33e89de065438: > > mfd: lpc_ich: Add support for Intel Apollo Lake SoC (2017-01-03 17:34:16 +0000) > > ---------------------------------------------------------------- > Immutable branch between MFD and MTD due for the v4.11 merge window > > ---------------------------------------------------------------- > Mika Westerberg (3): > spi-nor: Add support for Intel SPI serial flash controller > mfd: lpc_ich: Add support for SPI serial flash host controller > mfd: lpc_ich: Add support for Intel Apollo Lake SoC > > Documentation/mtd/intel-spi.txt | 88 ++++ > drivers/mfd/lpc_ich.c | 131 ++++++ > drivers/mtd/spi-nor/Kconfig | 20 + > drivers/mtd/spi-nor/Makefile | 2 + > drivers/mtd/spi-nor/intel-spi-platform.c | 57 +++ > drivers/mtd/spi-nor/intel-spi.c | 777 +++++++++++++++++++++++++++++++ > drivers/mtd/spi-nor/intel-spi.h | 24 + > include/linux/mfd/lpc_ich.h | 3 + > include/linux/platform_data/intel-spi.h | 31 ++ > 9 files changed, 1133 insertions(+) > create mode 100644 Documentation/mtd/intel-spi.txt > create mode 100644 drivers/mtd/spi-nor/intel-spi-platform.c > create mode 100644 drivers/mtd/spi-nor/intel-spi.c > create mode 100644 drivers/mtd/spi-nor/intel-spi.h > create mode 100644 include/linux/platform_data/intel-spi.h Hmm, I don't see the driver in linux-next. Is there something preventing you from merging the branch to your next branch?
[toc] | [next] | [standalone]
| From | Cyrille Pitchen <cyrille.pitchen@atmel.com> |
|---|---|
| Date | 2017-01-25 18:20 +0100 |
| Subject | Re: [GIT PULL] Immutable branch between MFD and MTD due for the v4.11 merge window |
| Message-ID | <t3zoK-4A0-9@gated-at.bofh.it> |
| In reply to | #1566708 |
Hi Mika, Le 25/01/2017 à 16:51, Mika Westerberg a écrit : > On Tue, Jan 03, 2017 at 05:37:50PM +0000, Lee Jones wrote: >> MTD Maintainers, >> >> Enjoy! >> >> 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/lee/mfd.git ib-mfd-mtd-v4.11 >> >> for you to fetch changes up to 87eb832ae9748fab00588b98c2e33e89de065438: >> >> mfd: lpc_ich: Add support for Intel Apollo Lake SoC (2017-01-03 17:34:16 +0000) >> >> ---------------------------------------------------------------- >> Immutable branch between MFD and MTD due for the v4.11 merge window >> >> ---------------------------------------------------------------- >> Mika Westerberg (3): >> spi-nor: Add support for Intel SPI serial flash controller >> mfd: lpc_ich: Add support for SPI serial flash host controller >> mfd: lpc_ich: Add support for Intel Apollo Lake SoC >> >> Documentation/mtd/intel-spi.txt | 88 ++++ >> drivers/mfd/lpc_ich.c | 131 ++++++ >> drivers/mtd/spi-nor/Kconfig | 20 + >> drivers/mtd/spi-nor/Makefile | 2 + >> drivers/mtd/spi-nor/intel-spi-platform.c | 57 +++ >> drivers/mtd/spi-nor/intel-spi.c | 777 +++++++++++++++++++++++++++++++ >> drivers/mtd/spi-nor/intel-spi.h | 24 + >> include/linux/mfd/lpc_ich.h | 3 + >> include/linux/platform_data/intel-spi.h | 31 ++ >> 9 files changed, 1133 insertions(+) >> create mode 100644 Documentation/mtd/intel-spi.txt >> create mode 100644 drivers/mtd/spi-nor/intel-spi-platform.c >> create mode 100644 drivers/mtd/spi-nor/intel-spi.c >> create mode 100644 drivers/mtd/spi-nor/intel-spi.h >> create mode 100644 include/linux/platform_data/intel-spi.h > > Hmm, I don't see the driver in linux-next. Is there something preventing > you from merging the branch to your next branch? > I've just sent an email to Stephen Rothwell to ask him whether he could include the "next" branch of the spi-nor tree into linux-next builds. Best regards, Cyrille
[toc] | [prev] | [next] | [standalone]
| From | Mika Westerberg <mika.westerberg@linux.intel.com> |
|---|---|
| Date | 2017-01-25 18:30 +0100 |
| Message-ID | <t3zyq-4DC-15@gated-at.bofh.it> |
| In reply to | #1566772 |
On Wed, Jan 25, 2017 at 06:18:32PM +0100, Cyrille Pitchen wrote: > I've just sent an email to Stephen Rothwell to ask him whether he could > include the "next" branch of the spi-nor tree into linux-next builds. OK, thanks!
[toc] | [prev] | [next] | [standalone]
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Date | 2017-01-26 13:30 +0100 |
| Message-ID | <t3RlD-7fL-1@gated-at.bofh.it> |
| In reply to | #1566708 |
On Wed, 25 Jan 2017, Mika Westerberg wrote: > On Tue, Jan 03, 2017 at 05:37:50PM +0000, Lee Jones wrote: > > MTD Maintainers, > > > > Enjoy! > > > > 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/lee/mfd.git ib-mfd-mtd-v4.11 > > > > for you to fetch changes up to 87eb832ae9748fab00588b98c2e33e89de065438: > > > > mfd: lpc_ich: Add support for Intel Apollo Lake SoC (2017-01-03 17:34:16 +0000) > > > > ---------------------------------------------------------------- > > Immutable branch between MFD and MTD due for the v4.11 merge window > > > > ---------------------------------------------------------------- > > Mika Westerberg (3): > > spi-nor: Add support for Intel SPI serial flash controller > > mfd: lpc_ich: Add support for SPI serial flash host controller > > mfd: lpc_ich: Add support for Intel Apollo Lake SoC > > > > Documentation/mtd/intel-spi.txt | 88 ++++ > > drivers/mfd/lpc_ich.c | 131 ++++++ > > drivers/mtd/spi-nor/Kconfig | 20 + > > drivers/mtd/spi-nor/Makefile | 2 + > > drivers/mtd/spi-nor/intel-spi-platform.c | 57 +++ > > drivers/mtd/spi-nor/intel-spi.c | 777 +++++++++++++++++++++++++++++++ > > drivers/mtd/spi-nor/intel-spi.h | 24 + > > include/linux/mfd/lpc_ich.h | 3 + > > include/linux/platform_data/intel-spi.h | 31 ++ > > 9 files changed, 1133 insertions(+) > > create mode 100644 Documentation/mtd/intel-spi.txt > > create mode 100644 drivers/mtd/spi-nor/intel-spi-platform.c > > create mode 100644 drivers/mtd/spi-nor/intel-spi.c > > create mode 100644 drivers/mtd/spi-nor/intel-spi.h > > create mode 100644 include/linux/platform_data/intel-spi.h > > Hmm, I don't see the driver in linux-next. Is there something preventing > you from merging the branch to your next branch? Should be in -next by tomorrow. -- Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org │ Open source software for ARM SoCs Follow Linaro: Facebook | Twitter | Blog
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web