mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [GIT PULL] Driver core changes for 6.10-rc1
@ 2024-05-22 14:51 Greg KH
  2024-05-22 19:38 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Greg KH @ 2024-05-22 14:51 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton
  Cc: linux-kernel, Stephen Rothwell, Saravana Kannan

The following changes since commit ed30a4a51bb196781c8058073ea720133a65596f:

  Linux 6.9-rc5 (2024-04-21 12:35:54 -0700)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git tags/driver-core-6.10-rc1

for you to fetch changes up to 880a746fa3ea5916a012fa320fdfbcd3f331bea3:

  device property: Fix a typo in the description of device_get_child_node_count() (2024-05-05 08:34:06 +0200)

----------------------------------------------------------------
Driver core changes for 6.10-rc1

Here is the small set of driver core and kernfs changes for 6.10-rc1.

Nothing major here at all, just a small set of changes for some driver
core apis, and minor fixups.  Included in here are:
  - sysfs_bin_attr_simple_read() helper added and used
  - device_show_string() helper added and used
All usages of these were acked by the various maintainers.  Also in here
are:
  - kernfs minor cleanup
  - removed unused functions
  - typo fix in documentation
  - pay attention to sysfs_create_link() failures in module.c finally.

All of these have been in linux-next for a very long time with no
reported problems.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

----------------------------------------------------------------
Arnd Bergmann (1):
      module: don't ignore sysfs_create_link() failures

Bjorn Helgaas (1):
      driver core: Remove unused platform_notify, platform_notify_remove

Christophe JAILLET (1):
      device property: Fix a typo in the description of device_get_child_node_count()

Greg Kroah-Hartman (1):
      Merge 6.9-rc5 into driver-core-next

Li zeming (1):
      kernfs: mount: Remove unnecessary ‘NULL’ values from knparent

Lukas Wunner (8):
      sysfs: Add sysfs_bin_attr_simple_read() helper
      treewide: Use sysfs_bin_attr_simple_read() helper
      driver core: Add device_show_string() helper for sysfs attributes
      hwmon: Use device_show_string() helper for sysfs attributes
      IB/qib: Use device_show_string() helper for sysfs attributes
      perf: Use device_show_string() helper for sysfs attributes
      platform/x86: Use device_show_string() helper for sysfs attributes
      scsi: Use device_show_string() helper for sysfs attributes

 arch/powerpc/perf/hv-24x7.c                        | 10 ----
 arch/powerpc/platforms/powernv/opal.c              | 10 +---
 arch/x86/events/intel/core.c                       | 13 ++---
 drivers/acpi/bgrt.c                                |  9 +---
 drivers/base/base.h                                |  9 ++--
 drivers/base/bus.c                                 |  9 +++-
 drivers/base/core.c                                | 17 +++---
 drivers/base/module.c                              | 42 +++++++++++----
 drivers/base/property.c                            |  2 +-
 drivers/firmware/dmi_scan.c                        | 12 +----
 drivers/firmware/efi/rci2-table.c                  | 10 +---
 drivers/gpu/drm/i915/gvt/firmware.c                | 26 +++------
 drivers/hwmon/i5k_amb.c                            | 15 ++----
 drivers/hwmon/ibmpex.c                             | 14 ++---
 drivers/infiniband/hw/qib/qib.h                    |  1 -
 drivers/infiniband/hw/qib/qib_driver.c             |  6 ---
 drivers/infiniband/hw/qib/qib_sysfs.c              | 10 +---
 drivers/perf/alibaba_uncore_drw_pmu.c              | 12 +----
 drivers/perf/arm-cci.c                             | 12 +----
 drivers/perf/arm-ccn.c                             | 11 +---
 drivers/perf/arm_cspmu/arm_cspmu.c                 | 10 ----
 drivers/perf/arm_cspmu/arm_cspmu.h                 |  7 +--
 drivers/perf/arm_dsu_pmu.c                         | 11 +---
 drivers/perf/cxl_pmu.c                             | 13 +----
 drivers/perf/hisilicon/hisi_pcie_pmu.c             | 13 +----
 drivers/perf/hisilicon/hisi_uncore_pmu.c           | 14 -----
 drivers/perf/hisilicon/hisi_uncore_pmu.h           |  4 +-
 drivers/perf/hisilicon/hns3_pmu.c                  | 12 +----
 drivers/perf/qcom_l3_pmu.c                         | 11 +---
 drivers/perf/xgene_pmu.c                           | 11 +---
 drivers/platform/x86/asus-wmi.c                    | 62 ++++++----------------
 drivers/platform/x86/thinkpad_acpi.c               | 10 +---
 drivers/platform/x86/toshiba_acpi.c                |  9 +---
 drivers/scsi/bfa/bfad_attr.c                       | 28 +++-------
 drivers/scsi/ibmvscsi_tgt/ibmvscsi_tgt.c           | 11 +---
 drivers/scsi/mvsas/mv_init.c                       | 10 +---
 drivers/scsi/qla2xxx/qla_attr.c                    | 11 +---
 drivers/scsi/smartpqi/smartpqi_init.c              | 11 ++--
 .../intel/int340x_thermal/int3400_thermal.c        |  9 +---
 fs/kernfs/mount.c                                  |  2 +-
 fs/sysfs/file.c                                    | 27 ++++++++++
 include/linux/device.h                             | 26 +++++----
 include/linux/sysfs.h                              | 15 ++++++
 init/initramfs.c                                   | 10 +---
 kernel/module/sysfs.c                              | 13 +----
 45 files changed, 188 insertions(+), 422 deletions(-)

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

* Re: [GIT PULL] Driver core changes for 6.10-rc1
  2024-05-22 14:51 [GIT PULL] Driver core changes for 6.10-rc1 Greg KH
@ 2024-05-22 19:38 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2024-05-22 19:38 UTC (permalink / raw)
  To: Greg KH
  Cc: Linus Torvalds, Andrew Morton, linux-kernel, Stephen Rothwell,
	Saravana Kannan

The pull request you sent on Wed, 22 May 2024 16:51:02 +0200:

> git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git tags/driver-core-6.10-rc1

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

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:[~2024-05-22 19:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-22 14:51 [GIT PULL] Driver core changes for 6.10-rc1 Greg KH
2024-05-22 19:38 ` 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

all inboxes | Powered by JetHome®