linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT,PULL] chrome-platform changes for v6.2
@ 2022-12-12  2:30 Tzung-Bi Shih
  2022-12-12 18:56 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Tzung-Bi Shih @ 2022-12-12  2:30 UTC (permalink / raw)
  To: torvalds; +Cc: pmalani, bleung, groeck, tzungbi, linux-kernel, chrome-platform

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

Linus,

Please pull chrome-platform updates for v6.2.

Thanks,
TzungBi


The following changes since commit 9abf2313adc1ca1b6180c508c25f22f9395cc780:

  Linux 6.1-rc1 (2022-10-16 15:36:24 -0700)

are available in the Git repository at:

  https://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git tags/tag-chrome-platform-for-v6.2

for you to fetch changes up to 9a8aadcf0b459c1257b9477fd6402e1d5952ae07:

  platform/chrome: cros_ec_typec: zero out stale pointers (2022-12-08 09:44:48 +0800)

----------------------------------------------------------------
chrome platform changes for 6.2

* New drivers

  - Driver cros_hps_i2c for ChromeOS human presence sensor.

* Cleanups

  - Add missing property in dt-binding example.
  - Update the availability of properties in dt-binding.
  - Separate dt-binding for ChromeOS fingerprint sensor.

* Improvements

  - Set PROBE_PREFER_ASYNCHRONOUS for some drivers for shortening boot time.

* Fixes

  - Fix an use-after-free in cros_ec_typec.

* Minor fixes and cleanups

----------------------------------------------------------------
Brian Norris (6):
      platform/chrome: cros_ec_lpc: Move mec_init to device probe
      platform/chrome: cros_ec_lpc: Mark PROBE_PREFER_ASYNCHRONOUS
      platform/chrome: cros_ec_debugfs: Set PROBE_PREFER_ASYNCHRONOUS
      platform/chrome: cros_ec_lightbar: Set PROBE_PREFER_ASYNCHRONOUS
      platform/chrome: cros_ec_spi: Set PROBE_PREFER_ASYNCHRONOUS
      platform/chrome: cros_ec_lpc: Force synchronous probe

Christophe JAILLET (1):
      platform/chrome: Use kstrtobool() instead of strtobool()

Dan Callaghan (2):
      platform/chrome: add a driver for HPS
      platform/chrome: cros_hps_i2c: make remove callback return void

Stephen Boyd (2):
      dt-bindings: cros-ec: Reorganize and enforce property availability
      dt-bindings: cros-ec: Add ChromeOS fingerprint binding

Tzung-Bi Shih (1):
      platform/chrome: cros_ec_lpc_mec: remove cros_ec_lpc_mec_destroy()

Uwe Kleine-König (1):
      platform/chrome: cros_ec: Convert to i2c's .probe_new()

Victor Ding (1):
      platform/chrome: cros_ec_typec: zero out stale pointers

Yuan Can (1):
      platform/chrome: cros_usbpd_notify: Fix error handling in cros_usbpd_notify_init()

 .../bindings/chrome/google,cros-ec-typec.yaml      |   1 +
 .../chrome/google,cros-kbd-led-backlight.yaml      |   1 +
 .../bindings/extcon/extcon-usbc-cros-ec.yaml       |   1 +
 .../bindings/i2c/google,cros-ec-i2c-tunnel.yaml    |   1 +
 .../devicetree/bindings/mfd/google,cros-ec.yaml    | 103 +++++++++++--
 .../bindings/pwm/google,cros-ec-pwm.yaml           |   1 +
 .../regulator/google,cros-ec-regulator.yaml        |   1 +
 .../bindings/sound/google,cros-ec-codec.yaml       |   1 +
 MAINTAINERS                                        |   6 +
 drivers/platform/chrome/Kconfig                    |  10 ++
 drivers/platform/chrome/Makefile                   |   1 +
 drivers/platform/chrome/cros_ec_debugfs.c          |   1 +
 drivers/platform/chrome/cros_ec_i2c.c              |   5 +-
 drivers/platform/chrome/cros_ec_lightbar.c         |   4 +-
 drivers/platform/chrome/cros_ec_lpc.c              |  15 +-
 drivers/platform/chrome/cros_ec_lpc_mec.c          |   6 -
 drivers/platform/chrome/cros_ec_lpc_mec.h          |   7 -
 drivers/platform/chrome/cros_ec_spi.c              |   1 +
 drivers/platform/chrome/cros_ec_typec.c            |   3 +
 drivers/platform/chrome/cros_hps_i2c.c             | 160 +++++++++++++++++++++
 drivers/platform/chrome/cros_usbpd_notify.c        |   6 +-
 drivers/platform/chrome/wilco_ec/core.c            |   5 -
 22 files changed, 298 insertions(+), 42 deletions(-)
 create mode 100644 drivers/platform/chrome/cros_hps_i2c.c

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

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

* Re: [GIT,PULL] chrome-platform changes for v6.2
  2022-12-12  2:30 [GIT,PULL] chrome-platform changes for v6.2 Tzung-Bi Shih
@ 2022-12-12 18:56 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-12-12 18:56 UTC (permalink / raw)
  To: Tzung-Bi Shih
  Cc: torvalds, pmalani, bleung, groeck, tzungbi, linux-kernel,
	chrome-platform

The pull request you sent on Mon, 12 Dec 2022 10:30:23 +0800:

> https://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git tags/tag-chrome-platform-for-v6.2

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

Thank you!

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

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

end of thread, other threads:[~2022-12-12 18:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-12  2:30 [GIT,PULL] chrome-platform changes for v6.2 Tzung-Bi Shih
2022-12-12 18:56 ` 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).