linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] MFD for v5.1
@ 2019-01-09  7:20 Lee Jones
  2019-01-13 23:10 ` Pavel Machek
  2019-01-14 18:30 ` [GIT PULL] MFD for v5.1 pr-tracker-bot
  0 siblings, 2 replies; 6+ messages in thread
From: Lee Jones @ 2019-01-09  7:20 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

Good morning Linus,

Please accept my apologies for the lateness.

Christmas holidays, yada yada yada! :)

The following changes since commit 651022382c7f8da46cb4872a545ee1da6d097d2a:

  Linux 4.20-rc1 (2018-11-04 15:37:52 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git tags/mfd-next-4.21

for you to fetch changes up to 3f2d347e851ef4464dea49504cde85e5eef67b2d:

  mfd: exynos-lpass: Enable UART module support (2019-01-03 08:32:42 +0000)

----------------------------------------------------------------
 - New Device Support
   - Add support for Power Supply to AXP813
   - Add support for GPIO, ADC, AC and Battery Power Supply to AXP803
   - Add support for UART to Exynos LPASS

 - Fix-ups
   - Use supplied MACROS; ti_am335x_tscadc
   - Trivial spelling/whitespace/alignment; tmio, axp20x, rave-sp
   - Regmap changes; bd9571mwv, wm5110-tables
   - Kconfig dependencies; MFD_AT91_USART
   - Supply shared data for child-devices; madera-core
   - Use new of_node_name_eq() API call; max77620, stmpe
   - Use managed resources (devm_*); tps65218
   - Comment descriptions; ingenic-tcu
   - Coding style; madera-core

 - Bug Fixes
   - Fix section mismatches; twl-core, db8500-prcmu
   - Correct error path related issues; mt6397-core, ab8500-core, mc13xxx-core
   - IRQ related fixes; tps6586x
   - Ensure proper initialisation sequence; qcom_rpm
   - Repair potential memory leak; cros_ec_dev

----------------------------------------------------------------
Beomho Seo (1):
      mfd: exynos-lpass: Enable UART module support

Charles Keepax (1):
      mfd: wm5110: Add missing ASRC rate register

Chen-Yu Tsai (1):
      mfd: axp20x: Re-align MFD cell entries

Cheng-Yi Chiang (1):
      mfd: cros_ec: Add commands to control codec

Dan Carpenter (1):
      mfd: ab8500-core: Return zero in get_register_interruptible()

Dien Pham (1):
      mfd: bd9571mwv: Add volatile register to make DVFS work

Enric Balletbo i Serra (1):
      mfd: cros_ec_dev: Add missing mfd_remove_devices() call in remove

Geert Uytterhoeven (1):
      mfd: tmio: Typo s/use use/use/

Jean Delvare (1):
      mfd: at91-usart: Add platform dependency

Jonathan Hunter (1):
      mfd: tps6586x: Handle interrupts on suspend

Jonathan Marek (1):
      mfd: qcom_rpm: write fw_version to CTRL_REG

Kangjie Lu (1):
      mfd: mc13xxx: Fix a missing check of a register-read failure

Keerthy (1):
      mfd: tps65218: Use devm_regmap_add_irq_chip and clean up error path in probe()

Nathan Chancellor (2):
      mfd: twl-core: Fix section annotations on {,un}protect_pm_master
      mfd: db8500-prcmu: Fix some section annotations

Nicolas Boichat (1):
      mfd: mt6397: Do not call irq_domain_remove if PMIC unsupported

Oskari Lemmela (2):
      mfd: axp20x: Add AC power supply cell for AXP813
      mfd: axp20x: Add supported cells for AXP803

Paul Cercueil (1):
      mfd: ingenic-tcu: Fix bit field description in header

Richard Fitzgerald (2):
      mfd: madera: Add shared data for accessory detection
      mfd: madera: Remove spurious semicolon in while loop

Rob Herring (1):
      mfd: Use of_node_name_eq() for node name comparisons

Vignesh R (2):
      mfd: ti_am335x_tscadc: Use PLATFORM_DEVID_AUTO while registering mfd cells
      iio: adc: ti_am335x_tscadc: Improve accuracy of measurement

Yangtao Li (1):
      mfd: rave-sp: Fix typo in rave_sp_checksum comment

 drivers/iio/adc/ti_am335x_adc.c      |   5 +-
 drivers/mfd/Kconfig                  |   1 +
 drivers/mfd/ab8500-core.c            |   2 +-
 drivers/mfd/axp20x.c                 | 126 +++++++++++++++++++----------------
 drivers/mfd/bd9571mwv.c              |   1 +
 drivers/mfd/cros_ec_dev.c            |   1 +
 drivers/mfd/db8500-prcmu.c           |   4 +-
 drivers/mfd/exynos-lpass.c           |   4 +-
 drivers/mfd/madera-core.c            |   5 +-
 drivers/mfd/max77620.c               |   2 +-
 drivers/mfd/mc13xxx-core.c           |   4 +-
 drivers/mfd/mt6397-core.c            |   3 +-
 drivers/mfd/qcom_rpm.c               |   4 ++
 drivers/mfd/rave-sp.c                |   2 +-
 drivers/mfd/stmpe.c                  |  12 ++--
 drivers/mfd/ti_am335x_tscadc.c       |   5 +-
 drivers/mfd/tps65218.c               |  24 +------
 drivers/mfd/tps6586x.c               |  24 +++++++
 drivers/mfd/twl-core.c               |   4 +-
 drivers/mfd/wm5110-tables.c          |   2 +
 include/linux/mfd/cros_ec_commands.h |  94 ++++++++++++++++++++++++++
 include/linux/mfd/ingenic-tcu.h      |   2 +-
 include/linux/mfd/madera/core.h      |   7 ++
 include/linux/mfd/ti_am335x_tscadc.h |   4 ++
 include/linux/mfd/tmio.h             |   2 +-
 25 files changed, 244 insertions(+), 100 deletions(-)

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [GIT PULL] MFD for v5.1
  2019-01-09  7:20 [GIT PULL] MFD for v5.1 Lee Jones
@ 2019-01-13 23:10 ` Pavel Machek
  2019-01-14  7:20   ` [GIT PULL] MFD for v5.0 Lee Jones
  2019-01-14 18:30 ` [GIT PULL] MFD for v5.1 pr-tracker-bot
  1 sibling, 1 reply; 6+ messages in thread
From: Pavel Machek @ 2019-01-13 23:10 UTC (permalink / raw)
  To: Lee Jones; +Cc: torvalds, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 329 bytes --]

On Wed 2019-01-09 07:20:18, Lee Jones wrote:
> Good morning Linus,
> 
> Please accept my apologies for the lateness.

I'd say that for 5.1, you are pretty early :-).

									Pavel
-- 
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 181 bytes --]

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

* [GIT PULL] MFD for v5.0
  2019-01-13 23:10 ` Pavel Machek
@ 2019-01-14  7:20   ` Lee Jones
  0 siblings, 0 replies; 6+ messages in thread
From: Lee Jones @ 2019-01-14  7:20 UTC (permalink / raw)
  To: Pavel Machek; +Cc: torvalds, linux-kernel

On Mon, 14 Jan 2019, Pavel Machek wrote:

> On Wed 2019-01-09 07:20:18, Lee Jones wrote:
> > Good morning Linus,
> > 
> > Please accept my apologies for the lateness.
> 
> I'd say that for 5.1, you are pretty early :-).

Ha ha!  Yes, indeed.  It seems sending late messes with the brain!

Ideally I'd like this accepted for 5.0 please.

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

* Re: [GIT PULL] MFD for v5.1
  2019-01-09  7:20 [GIT PULL] MFD for v5.1 Lee Jones
  2019-01-13 23:10 ` Pavel Machek
@ 2019-01-14 18:30 ` pr-tracker-bot
  1 sibling, 0 replies; 6+ messages in thread
From: pr-tracker-bot @ 2019-01-14 18:30 UTC (permalink / raw)
  To: Lee Jones; +Cc: torvalds, linux-kernel

The pull request you sent on Wed, 9 Jan 2019 07:20:18 +0000:

> git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git tags/mfd-next-4.21

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/9deb9e1637761cc4e6df5104a34197ef0bae1358

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

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

* Re: [GIT PULL] MFD for v5.1
  2019-03-07  9:38 Lee Jones
@ 2019-03-08 18:35 ` pr-tracker-bot
  0 siblings, 0 replies; 6+ messages in thread
From: pr-tracker-bot @ 2019-03-08 18:35 UTC (permalink / raw)
  To: Lee Jones; +Cc: torvalds, linux-kernel

The pull request you sent on Thu, 7 Mar 2019 09:38:28 +0000:

> git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git mfd-next-5.1

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

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.wiki.kernel.org/userdoc/prtracker

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

* [GIT PULL] MFD for v5.1
@ 2019-03-07  9:38 Lee Jones
  2019-03-08 18:35 ` pr-tracker-bot
  0 siblings, 1 reply; 6+ messages in thread
From: Lee Jones @ 2019-03-07  9:38 UTC (permalink / raw)
  To: torvalds; +Cc: linux-kernel

Good morning Linus,

Enjoy!

The following changes since commit 49a57857aeea06ca831043acbb0fa5e0f50602fd:

  Linux 5.0-rc3 (2019-01-21 13:14:44 +1300)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git mfd-next-5.1

for you to fetch changes up to d2d833e0bf2bad221a955626b942b38312630894:

  mfd: mxs-lradc: Mark expected switch fall-through (2019-02-18 09:07:22 +0000)

----------------------------------------------------------------
 - New Drivers
   - Add STMPE ADC Input driver
   - Add STMicroelectronics STPMIC1 Parent driver
   - Add STMicroelectronics STPMIC1 OnKey Misc driver
   - Add STMicroelectronics STPMIC1 Watchdog driver
   - Add Cirrus Logic Lochnagar Parent driver
   - Add TQ-Systems TQMX86 Parent driver

 - New Device Support
   - Add support for ADC to STMPE

 - New (or moved) Functionality
   - Move Lightbar functionality to its own driver; cros_ec_lightbar
   - Move VBC functionality to its own driver; cros_ec_vbc
   - Move VBC functionality to its own driver; cros_ec_vbc
   - Move DebugFS functionality to its own driver; cros_ec_debugfs
   - Move SYSFS functionality to its own driver; cros_ec_sysfs
   - Add support for input voltage options; tps65218

 - Fix-ups
   - Use devm_* managed resources; cros_ec
   - Device Tree documentation; stmpe, aspeed-lpc, lochnagar
   - Trivial Clean-ups; stmpe
   - Rip out broken modular code; aat2870-core, adp5520, as3711,
         db8500-prcmu, htc-i2cpld, max8925-core, rc5t583, sta2x11-mfd,
	 syscon, tps65090, tps65910, tps68470 tps80031, wm831x-spi,
	 wm831x-i2c, wm831x-core, wm8350-i2c, wm8350-core, wm8400-core
   - Kconfig fixups; INTEL_SOC_PMIC
   - Improve error path; sm501, sec-core
   - Use struct_size() helper; sm501
   - Constify; at91-usart
   - Use pointers instead of copying data; at91-usart
   - Deliver proper return value; cros_ec_dev
   - Trivial formatting/whitespace; sec-core

----------------------------------------------------------------
Andrew Lunn (1):
      mfd: tqmx86: IO controller with I2C, Wachdog and GPIO

Andy Shevchenko (1):
      mfd: intel-lpss: Move linux/pm.h to the local header

Axel Lin (2):
      mfd: at91-usart: Constify at91_usart_spi_subdev and at91_usart_serial_subdev
      mfd: at91-usart: No need to copy mfd_cell in probe

Charles Keepax (2):
      mfd: lochnagar: Add initial binding documentation
      mfd: lochnagar: Add support for the Cirrus Logic Lochnagar

Christian Hohnstaedt (1):
      mfd: tps65218.c: Add input voltage options

Enric Balletbo i Serra (7):
      mfd / platform: cros_ec: Use devm_mfd_add_devices
      mfd / platform: cros_ec: Move lightbar attributes to its own driver
      mfd / platform: cros_ec: Move vbc attributes to its own driver
      mfd / platform: cros_ec: Move debugfs attributes to its own driver
      mfd / platform: cros_ec: Move device sysfs attributes to its own driver
      mfd / platform: cros_ec_vbc: Instantiate only if the EC has a VBC NVRAM
      platform/chrome: cros_ec_lightbar: Instantiate only if the EC has a lightbar

Guenter Roeck (1):
      mfd: cros_ec_dev: Return number of bytes read with CROS_EC_DEV_IOCRDMEM

Gustavo A. R. Silva (3):
      mfd: sm501: Fix potential NULL pointer dereference
      mfd: sm501: Use struct_size() in devm_kzalloc()
      mfd: mxs-lradc: Mark expected switch fall-through

Jarkko Nikula (1):
      mfd: Kconfig: Fix I2C_DESIGNWARE_PLATFORM dependencies

Krzysztof Kozlowski (2):
      mfd: sec-core: Return gracefully instead of BUG() if device cannot match
      mfd: sec-core: Cleanup formatting to a consistent style

Lee Jones (1):
      Merge branches 'ib-mfd-iio-input-5.1', 'ib-mfd-input-watchdog-5.1' and 'ib-mfd-platform-5.1' into ibs-for-mfd-merged

Pascal PAILLET-LME (6):
      dt-bindings: mfd: Document STPMIC1
      mfd: stpmic1: Add STPMIC1 driver
      dt-bindings: input: Document STPMIC1 PMIC onkey
      input: stpmic1: Add STPMIC1 onkey driver
      dt-bindings: watchdog: document STPMIC1 PMIC watchdog
      watchdog: stpmic1: Add STPMIC1 watchdog driver

Paul Gortmaker (19):
      mfd: aat2870-core: Make it explicitly non-modular
      mfd: adp5520: Make it explicitly non-modular
      mfd: as3711: Make it explicitly non-modular
      mfd: db8500-prcmu: Drop unused MODULE_ tags from non-modular code
      mfd: htc-i2cpld: Make it explicitly non-modular
      mfd: max8925-core: Drop unused MODULE_ tags from non-modular code
      mfd: rc5t583: Make it explicitly non-modular
      mfd: sta2x11: Drop unused MODULE_ tags from non-modular code
      mfd: syscon: Make it explicitly non-modular
      mfd: tps65090: Make it explicitly non-modular
      mfd: tps65910: Make it explicitly non-modular
      mfd: tps80031: Make it explicitly non-modular
      mfd: wm831x-spi: Make it explicitly non-modular
      mfd: wm831x-i2c: Make it explicitly non-modular
      mfd: wm831x-core: Drop unused module infrastructure from non-modular code
      mfd: wm8350-i2c: Make it explicitly non-modular
      mfd: wm8350-core: Drop unused module infrastructure from non-modular code
      mfd: wm8400-core: Make it explicitly non-modular
      mfd: tps68470: Drop unused MODULE_DEVICE_TABLE

Philippe Schenker (3):
      dt-bindings: stmpe: Reformatting parameter list and use tabs only
      mfd: stmpe: Move ADC related defines to MFD header
      Input: stmpe-ts: preparations for STMPE ADC driver

Stefan Agner (3):
      mfd: stmpe: Preparations for STMPE ADC driver
      iio: adc: add STMPE ADC driver using IIO framework
      iio: adc: add STMPE ADC devicetree bindings

Vijay Khemka (1):
      dt-bindings: mfd: aspeed-lpc: Make parameter optional

 Documentation/ABI/testing/sysfs-class-chromeos     |  32 ++
 .../sysfs-class-chromeos-driver-cros-ec-lightbar   |  74 ++++
 .../sysfs-class-chromeos-driver-cros-ec-vbc        |   6 +
 .../devicetree/bindings/iio/adc/stmpe-adc.txt      |  21 ++
 .../devicetree/bindings/input/st,stpmic1-onkey.txt |  28 ++
 .../bindings/input/touchscreen/stmpe.txt           | 116 ++++--
 .../devicetree/bindings/mfd/aspeed-lpc.txt         |   2 +
 .../devicetree/bindings/mfd/cirrus,lochnagar.txt   |  68 ++++
 .../devicetree/bindings/mfd/st,stpmic1.txt         |  61 ++++
 Documentation/devicetree/bindings/mfd/stmpe.txt    |  28 +-
 .../bindings/watchdog/st,stpmic1-wdt.txt           |  11 +
 MAINTAINERS                                        |  17 +
 drivers/iio/adc/Kconfig                            |   7 +
 drivers/iio/adc/Makefile                           |   1 +
 drivers/iio/adc/stmpe-adc.c                        | 363 +++++++++++++++++++
 drivers/input/misc/Kconfig                         |  11 +
 drivers/input/misc/Makefile                        |   2 +
 drivers/input/misc/stpmic1_onkey.c                 | 198 ++++++++++
 drivers/input/touchscreen/stmpe-ts.c               |  66 +---
 drivers/mfd/Kconfig                                |  42 ++-
 drivers/mfd/Makefile                               |   4 +
 drivers/mfd/aat2870-core.c                         |  40 +--
 drivers/mfd/adp5520.c                              |  30 +-
 drivers/mfd/as3711.c                               |  14 -
 drivers/mfd/at91-usart.c                           |  24 +-
 drivers/mfd/cros_ec.c                              |  14 +-
 drivers/mfd/cros_ec_dev.c                          |  91 ++---
 drivers/mfd/cros_ec_dev.h                          |   6 -
 drivers/mfd/db8500-prcmu.c                         |  10 +-
 drivers/mfd/htc-i2cpld.c                           |  18 +-
 drivers/mfd/intel-lpss-acpi.c                      |   1 -
 drivers/mfd/intel-lpss-pci.c                       |   1 -
 drivers/mfd/intel-lpss.h                           |   2 +
 drivers/mfd/lochnagar-i2c.c                        | 398 +++++++++++++++++++++
 drivers/mfd/max8925-core.c                         |   7 +-
 drivers/mfd/mxs-lradc.c                            |   2 +-
 drivers/mfd/rc5t583.c                              |  14 -
 drivers/mfd/sec-core.c                             |  16 +-
 drivers/mfd/sm501.c                                |   6 +-
 drivers/mfd/sta2x11-mfd.c                          |  10 +-
 drivers/mfd/stmpe.c                                |  68 ++++
 drivers/mfd/stpmic1.c                              | 213 +++++++++++
 drivers/mfd/syscon.c                               |  12 +-
 drivers/mfd/tps65090.c                             |  30 +-
 drivers/mfd/tps65218.c                             |  89 +++++
 drivers/mfd/tps65910.c                             |  18 +-
 drivers/mfd/tps68470.c                             |   1 -
 drivers/mfd/tps80031.c                             |  37 +-
 drivers/mfd/tqmx86.c                               | 281 +++++++++++++++
 drivers/mfd/wm831x-core.c                          |  15 +-
 drivers/mfd/wm831x-i2c.c                           |  20 +-
 drivers/mfd/wm831x-spi.c                           |  24 +-
 drivers/mfd/wm8350-core.c                          |  30 +-
 drivers/mfd/wm8350-i2c.c                           |  24 +-
 drivers/mfd/wm8400-core.c                          |  18 +-
 drivers/platform/chrome/Kconfig                    |  47 ++-
 drivers/platform/chrome/Makefile                   |   7 +-
 drivers/platform/chrome/cros_ec_debugfs.c          |  62 ++--
 drivers/platform/chrome/cros_ec_i2c.c              |  10 -
 drivers/platform/chrome/cros_ec_lightbar.c         | 126 ++++---
 drivers/platform/chrome/cros_ec_lpc.c              |   4 -
 drivers/platform/chrome/cros_ec_spi.c              |  11 -
 drivers/platform/chrome/cros_ec_sysfs.c            |  36 +-
 drivers/platform/chrome/cros_ec_vbc.c              |  59 ++-
 drivers/watchdog/Kconfig                           |  12 +
 drivers/watchdog/Makefile                          |   1 +
 drivers/watchdog/stpmic1_wdt.c                     | 139 +++++++
 include/dt-bindings/clk/lochnagar.h                |  26 ++
 include/dt-bindings/mfd/st,stpmic1.h               |  50 +++
 include/dt-bindings/pinctrl/lochnagar.h            | 132 +++++++
 include/linux/mfd/cros_ec.h                        |  21 --
 include/linux/mfd/lochnagar.h                      |  55 +++
 include/linux/mfd/lochnagar1_regs.h                | 157 ++++++++
 include/linux/mfd/lochnagar2_regs.h                | 291 +++++++++++++++
 include/linux/mfd/stmpe.h                          |  21 ++
 include/linux/mfd/stpmic1.h                        | 212 +++++++++++
 include/linux/mfd/tps65218.h                       |   4 +
 include/linux/mfd/wm831x/core.h                    |   1 -
 include/linux/mfd/wm8350/core.h                    |   1 -
 79 files changed, 3571 insertions(+), 656 deletions(-)
 create mode 100644 Documentation/ABI/testing/sysfs-class-chromeos
 create mode 100644 Documentation/ABI/testing/sysfs-class-chromeos-driver-cros-ec-lightbar
 create mode 100644 Documentation/ABI/testing/sysfs-class-chromeos-driver-cros-ec-vbc
 create mode 100644 Documentation/devicetree/bindings/iio/adc/stmpe-adc.txt
 create mode 100644 Documentation/devicetree/bindings/input/st,stpmic1-onkey.txt
 create mode 100644 Documentation/devicetree/bindings/mfd/cirrus,lochnagar.txt
 create mode 100644 Documentation/devicetree/bindings/mfd/st,stpmic1.txt
 create mode 100644 Documentation/devicetree/bindings/watchdog/st,stpmic1-wdt.txt
 create mode 100644 drivers/iio/adc/stmpe-adc.c
 create mode 100644 drivers/input/misc/stpmic1_onkey.c
 create mode 100644 drivers/mfd/lochnagar-i2c.c
 create mode 100644 drivers/mfd/stpmic1.c
 create mode 100644 drivers/mfd/tqmx86.c
 create mode 100644 drivers/watchdog/stpmic1_wdt.c
 create mode 100644 include/dt-bindings/clk/lochnagar.h
 create mode 100644 include/dt-bindings/mfd/st,stpmic1.h
 create mode 100644 include/dt-bindings/pinctrl/lochnagar.h
 create mode 100644 include/linux/mfd/lochnagar.h
 create mode 100644 include/linux/mfd/lochnagar1_regs.h
 create mode 100644 include/linux/mfd/lochnagar2_regs.h
 create mode 100644 include/linux/mfd/stpmic1.h

-- 
Lee Jones [李琼斯]
Linaro Services Technical Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

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

end of thread, other threads:[~2019-03-08 18:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-09  7:20 [GIT PULL] MFD for v5.1 Lee Jones
2019-01-13 23:10 ` Pavel Machek
2019-01-14  7:20   ` [GIT PULL] MFD for v5.0 Lee Jones
2019-01-14 18:30 ` [GIT PULL] MFD for v5.1 pr-tracker-bot
2019-03-07  9:38 Lee Jones
2019-03-08 18:35 ` pr-tracker-bot

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).