This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from ea295481b6e3 Merge tag 'xarray-5.1-rc1' of git://git.infradead.org/user [...] new d01b1f96a82e perf/x86/intel: Make cpuc allocations consistent new 11f8b2d65ca9 perf/x86/intel: Generalize dynamic constraint creation new 52f64909409c x86: Add TSX Force Abort CPUID/MSR new 400816f60c54 perf/x86/intel: Implement support for TSX Force Abort new 004cc08675b7 Merge branch 'x86-tsx-for-linus' of git://git.kernel.org/p [...] new ac8c1a2e502e platform/chrome: cromeos_pstore: switch to SPDX identifier new cc2db0756fbb platform/chrome: cros_ec_debugfs: switch to SPDX identifier new 5414dd14aafe platform/chrome: cros_ec_lightbar: switch to SPDX identifier new 8d4d79483222 platform/chrome: cros_ec_sysfs: switch to SPDX identifier new 27755cf70914 platform/chrome: cros_ec_vbc: switch to SPDX identifier new f0c70b9bdb88 platform/chrome: cros_ec_i2c: switch to SPDX identifier new 1058ca940e40 platform/chrome: cros_ec_lpc: switch to SPDX identifier new b861297cf3bb platform/chrome: cros_ec_proto: switch to SPDX identifier new 30fc9147aea7 platform/chrome: cros_ec_spi: switch to SPDX identifier new 0e27a11f3201 platform/chrome: cros_kbd_led_backlight: switch to SPDX id [...] new d6c7901ba88f platform/chrome: cros_ec_lightbar: remove pr_fmt() define new 73c935de7fde platform/chrome: cros_ec_sysfs: remove pr_fmt() define new 67e9ac8c565a MAINTAINERS: chrome-platform: change the git tree to a chr [...] new 6b7cb2227d4d platform/chrome: cros_ec: Remove cros_ec dependency in lpc_mec new 7b3d4f44abf0 platform/chrome: Add new driver for Wilco EC new b787bb126cbc platform/chrome: wilco_ec: Add support for raw commands in [...] new 0d2f2a3da1f2 platform/chrome: wilco_ec: Add RTC driver new 2794449576a6 platform/chrome: fix wilco-ec dependencies new f47d633134f7 Merge tag 'tag-chrome-platform-for-v5.1' of git://git.kern [...] new cb1d150d809e hpfs: fix spelling mistake "partion" -> "partition"
The 25 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/ABI/testing/debugfs-wilco-ec | 23 +++ MAINTAINERS | 2 +- arch/x86/events/core.c | 13 +- arch/x86/events/intel/core.c | 154 +++++++++++---- arch/x86/events/perf_event.h | 17 +- arch/x86/include/asm/cpufeatures.h | 1 + arch/x86/include/asm/msr-index.h | 6 + drivers/platform/chrome/Kconfig | 2 + drivers/platform/chrome/Makefile | 2 + drivers/platform/chrome/chromeos_pstore.c | 17 +- drivers/platform/chrome/cros_ec_debugfs.c | 22 +-- drivers/platform/chrome/cros_ec_i2c.c | 22 +-- drivers/platform/chrome/cros_ec_lightbar.c | 24 +-- drivers/platform/chrome/cros_ec_lpc.c | 34 ++-- drivers/platform/chrome/cros_ec_lpc_mec.c | 78 +++++--- drivers/platform/chrome/cros_ec_lpc_mec.h | 63 +++--- drivers/platform/chrome/cros_ec_lpc_reg.c | 73 ++----- drivers/platform/chrome/cros_ec_lpc_reg.h | 20 +- drivers/platform/chrome/cros_ec_proto.c | 19 +- drivers/platform/chrome/cros_ec_spi.c | 20 +- drivers/platform/chrome/cros_ec_sysfs.c | 26 +-- drivers/platform/chrome/cros_ec_vbc.c | 24 +-- drivers/platform/chrome/cros_kbd_led_backlight.c | 19 +- drivers/platform/chrome/wilco_ec/Kconfig | 20 ++ drivers/platform/chrome/wilco_ec/Makefile | 6 + drivers/platform/chrome/wilco_ec/core.c | 136 +++++++++++++ drivers/platform/chrome/wilco_ec/debugfs.c | 238 +++++++++++++++++++++++ drivers/platform/chrome/wilco_ec/mailbox.c | 237 ++++++++++++++++++++++ drivers/rtc/Kconfig | 11 ++ drivers/rtc/Makefile | 1 + drivers/rtc/rtc-wilco-ec.c | 177 +++++++++++++++++ fs/hpfs/hpfs.h | 8 +- include/linux/platform_data/wilco-ec.h | 144 ++++++++++++++ 33 files changed, 1297 insertions(+), 362 deletions(-) create mode 100644 Documentation/ABI/testing/debugfs-wilco-ec create mode 100644 drivers/platform/chrome/wilco_ec/Kconfig create mode 100644 drivers/platform/chrome/wilco_ec/Makefile create mode 100644 drivers/platform/chrome/wilco_ec/core.c create mode 100644 drivers/platform/chrome/wilco_ec/debugfs.c create mode 100644 drivers/platform/chrome/wilco_ec/mailbox.c create mode 100644 drivers/rtc/rtc-wilco-ec.c create mode 100644 include/linux/platform_data/wilco-ec.h