https://github.com/torvalds/linux
Revision 448b3fe5a0eab5b625a7e15c67c7972169e47ff8 authored by Linus Torvalds on 09 May 2024, 17:17:22 UTC, committed by Linus Torvalds on 09 May 2024, 17:17:22 UTC
Pull hwmon fixes from Guenter Roeck:

 - pmbus/ucd9000: Increase chip access delay to avoid random access
   errors

 - corsair-cpro: Protect kernel code against parallel hidraw access from
   userspace

* tag 'hwmon-for-v6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
  hwmon: (pmbus/ucd9000) Increase delay from 250 to 500us
  hwmon: (corsair-cpro) Protect ccp->wait_input_report with a spinlock
  hwmon: (corsair-cpro) Use complete_all() instead of complete() in ccp_raw_event()
  hwmon: (corsair-cpro) Use a separate buffer for sending commands
2 parent s 8c3b756 + 26e8383
Raw File
Tip revision: 448b3fe5a0eab5b625a7e15c67c7972169e47ff8 authored by Linus Torvalds on 09 May 2024, 17:17:22 UTC
Merge tag 'hwmon-for-v6.9-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
Tip revision: 448b3fe
.rustfmt.toml
edition = "2021"
newline_style = "Unix"

# Unstable options that help catching some mistakes in formatting and that we may want to enable
# when they become stable.
#
# They are kept here since they are useful to run from time to time.
#format_code_in_doc_comments = true
#reorder_impl_items = true
#comment_width = 100
#wrap_comments = true
#normalize_comments = true
back to top