* [GIT PULL] chrome-platform changes for v6.7
@ 2023-10-30 7:04 Tzung-Bi Shih
2023-11-01 4:22 ` pr-tracker-bot
0 siblings, 1 reply; 2+ messages in thread
From: Tzung-Bi Shih @ 2023-10-30 7:04 UTC (permalink / raw)
To: torvalds; +Cc: pmalani, bleung, groeck, tzungbi, linux-kernel, chrome-platform
[-- Attachment #1: Type: text/plain, Size: 4606 bytes --]
Hi Linus,
Please pull chrome-platform updates for v6.7.
Thanks,
TzungBi
The following changes since commit 0bb80ecc33a8fb5a682236443c1e740d5c917d1d:
Linux 6.6-rc1 (2023-09-10 16:28:41 -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.7
for you to fetch changes up to 47ea0ddb1f5604ba3496baa19110aec6a3151f2e:
platform/chrome: cros_ec_lpc: Separate host command and irq disable (2023-10-28 11:13:25 +0800)
----------------------------------------------------------------
chrome platform changes for 6.7
* Improvements
- Annotate flexible array members with __counted_by.
- Convert platform drivers' .remove callbacks to return void.
* Fixes
- Avoid MKBP event timeouts by disabling/enabling IRQ later/earlier.
* Misc
- Minor cleanups and fixes.
----------------------------------------------------------------
Kees Cook (1):
platform/chrome: wilco_ec: Annotate struct ec_event_queue with __counted_by
Lalith Rajendran (1):
platform/chrome: cros_ec_lpc: Separate host command and irq disable
Stephen Boyd (4):
platform/chrome: cros_ec_typec: Use semi-colons instead of commas
platform/chrome: cros_ec_typec: Use dev_err_probe() more
platform/chrome: cros_typec_vdm: Mark port_amode_ops const
platform/chrome: cros_ec_proto: Mark outdata as const
Tzung-Bi Shih (3):
platform/chrome: cros_ec: fix compilation warning
platform/chrome: kunit: initialize lock for fake ec_dev
platform/chrome: kunit: make EC protocol tests independent
Uwe Kleine-König (12):
platform/chrome: cros_ec_chardev: Convert to platform remove callback returning void
platform/chrome: cros_ec_debugfs: Convert to platform remove callback returning void
platform/chrome: cros_ec_lightbar: Convert to platform remove callback returning void
platform/chrome: cros_ec_lpc: Convert to platform remove callback returning void
platform/chrome: cros_ec_sysfs: Convert to platform remove callback returning void
platform/chrome: cros_ec_vbc: Convert to platform remove callback returning void
platform/chrome: cros_typec_switch: Convert to platform remove callback returning void
platform/chrome: cros_usbpd_logger: Convert to platform remove callback returning void
platform/chrome: cros_usbpd_notify: Convert to platform remove callback returning void
platform/chrome/wilco_ec: core: Convert to platform remove callback returning void
platform/chrome/wilco_ec: debugfs: Convert to platform remove callback returning void
platform/chrome/wilco_ec: telemetry: Convert to platform remove callback returning void
drivers/platform/chrome/Kconfig | 6 +-
drivers/platform/chrome/Makefile | 5 +-
drivers/platform/chrome/cros_ec.c | 116 +++++++++++++++++----
drivers/platform/chrome/cros_ec.h | 6 ++
drivers/platform/chrome/cros_ec_chardev.c | 6 +-
drivers/platform/chrome/cros_ec_debugfs.c | 6 +-
drivers/platform/chrome/cros_ec_lightbar.c | 6 +-
drivers/platform/chrome/cros_ec_lpc.c | 28 +++--
drivers/platform/chrome/cros_ec_proto.c | 2 +-
drivers/platform/chrome/cros_ec_proto_test.c | 3 +-
...cros_kunit_util.c => cros_ec_proto_test_util.c} | 4 +-
...cros_kunit_util.h => cros_ec_proto_test_util.h} | 0
drivers/platform/chrome/cros_ec_sysfs.c | 6 +-
drivers/platform/chrome/cros_ec_typec.c | 18 ++--
drivers/platform/chrome/cros_ec_vbc.c | 6 +-
drivers/platform/chrome/cros_typec_switch.c | 5 +-
drivers/platform/chrome/cros_typec_vdm.c | 2 +-
drivers/platform/chrome/cros_typec_vdm.h | 2 +-
drivers/platform/chrome/cros_usbpd_logger.c | 6 +-
drivers/platform/chrome/cros_usbpd_notify.c | 12 +--
drivers/platform/chrome/wilco_ec/core.c | 5 +-
drivers/platform/chrome/wilco_ec/debugfs.c | 6 +-
drivers/platform/chrome/wilco_ec/event.c | 2 +-
drivers/platform/chrome/wilco_ec/telemetry.c | 6 +-
include/linux/platform_data/cros_ec_proto.h | 2 +-
25 files changed, 166 insertions(+), 100 deletions(-)
rename drivers/platform/chrome/{cros_kunit_util.c => cros_ec_proto_test_util.c} (98%)
rename drivers/platform/chrome/{cros_kunit_util.h => cros_ec_proto_test_util.h} (100%)
[-- 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.7
2023-10-30 7:04 [GIT PULL] chrome-platform changes for v6.7 Tzung-Bi Shih
@ 2023-11-01 4:22 ` pr-tracker-bot
0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2023-11-01 4:22 UTC (permalink / raw)
To: Tzung-Bi Shih
Cc: torvalds, pmalani, bleung, groeck, tzungbi, linux-kernel,
chrome-platform
The pull request you sent on Mon, 30 Oct 2023 15:04:52 +0800:
> https://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git tags/tag-chrome-platform-for-v6.7
has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/3475b91ff258b998b891964e8c263cff48384c01
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:[~2023-11-01 4:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-30 7:04 [GIT PULL] chrome-platform changes for v6.7 Tzung-Bi Shih
2023-11-01 4:22 ` 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).