From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S967068AbcCQAHl (ORCPT ); Wed, 16 Mar 2016 20:07:41 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:48833 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934546AbcCQAHk (ORCPT ); Wed, 16 Mar 2016 20:07:40 -0400 Date: Wed, 16 Mar 2016 17:07:36 -0700 From: Greg KH To: Linus Torvalds , Andrew Morton Cc: linux-kernel@vger.kernel.org Subject: [GIT PULL] Driver core patches for 4.6-rc1 Message-ID: <20160317000736.GA12658@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit 18558cae0272f8fd9647e69d3fec1565a7949865: Linux 4.5-rc4 (2016-02-14 13:05:20 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git/ tags/driver-core-4.6-rc1 for you to fetch changes up to 112d125a89479519efc437b2961b8d4a98761c1b: Revert "driver-core: platform: probe of-devices only using list of compatibles" (2016-02-15 12:52:59 -0800) ---------------------------------------------------------------- Driver core patches for 4.6-rc1 Just a few patches this time around for the 4.6-rc1 merge window. Largest is a new firmware driver, but there are some other updates to the driver core in here as well, the shortlog has the details. All have been in linux-next for a while with no reported issues. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Arnd Bergmann (1): firmware: qemu config needs I/O ports Gabriel Somlo (4): kobject: export kset_find_obj() for module use firmware: introduce sysfs driver for QEMU's fw_cfg device firmware: create directory hierarchy for sysfs fw_cfg entries devicetree: update documentation for fw_cfg ARM bindings Geliang Tang (2): driver core: bus: use list_for_each_entry* driver core: bus: use to_subsys_private and to_device_private_bus Greg Kroah-Hartman (2): Merge 4.5-rc4 into driver-core-next Revert "driver-core: platform: probe of-devices only using list of compatibles" Jiaxing Wang (1): debugfs: Add stub function for debugfs_create_automount(). Michal Nazarewicz (1): drivers: dma-coherent: simplify dma_init_coherent_memory return value Sudip Mukherjee (1): component: remove impossible condition Tejun Heo (1): kernfs: make kernfs_walk_ns() use kernfs_pr_cont_buf[] Uwe Kleine-König (2): driver-core: platform: fix typo in documentation for multi-driver helper driver-core: platform: probe of-devices only using list of compatibles Valentin Rothberg (1): firmware: qemu_fw_cfg.c: fix typo FW_CFG_DATA_OFF .../ABI/testing/sysfs-firmware-qemu_fw_cfg | 100 +++ Documentation/devicetree/bindings/arm/fw-cfg.txt | 38 +- Documentation/driver-model/platform.txt | 2 +- drivers/base/bus.c | 15 +- drivers/base/component.c | 2 +- drivers/base/dma-coherent.c | 28 +- drivers/firmware/Kconfig | 20 + drivers/firmware/Makefile | 1 + drivers/firmware/qemu_fw_cfg.c | 751 +++++++++++++++++++++ fs/kernfs/dir.c | 19 +- include/linux/debugfs.h | 8 + lib/kobject.c | 1 + 12 files changed, 915 insertions(+), 70 deletions(-) create mode 100644 Documentation/ABI/testing/sysfs-firmware-qemu_fw_cfg create mode 100644 drivers/firmware/qemu_fw_cfg.c