From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752245AbdJCMUA (ORCPT ); Tue, 3 Oct 2017 08:20:00 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:59888 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751849AbdJCMT6 (ORCPT ); Tue, 3 Oct 2017 08:19:58 -0400 Date: Tue, 3 Oct 2017 14:20:07 +0200 From: Greg KH To: Linus Torvalds , Andrew Morton Cc: linux-kernel@vger.kernel.org Subject: [GIT PULL] Driver core fixes for 4.14-rc4 Message-ID: <20171003122007.GA26056@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e: Linux 4.14-rc1 (2017-09-16 15:47:51 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git/ tags/driver-core-4.14-rc4 for you to fetch changes up to 850fdec8d2fd1eebfa003fea39bec08cd69b6155: driver core: remove DRIVER_ATTR (2017-09-19 09:20:33 +0200) ---------------------------------------------------------------- Driver core fixes for 4.14-rc4 Here are a few small fixes for 4.14-rc4. The removal of DRIVER_ATTR() was almost completed by 4.14-rc1, but one straggler made it in through some other tree (odds are, one of mine...) So there's a simple removal of the last user, and then finally the macro is removed from the tree. There's a fix for old crazy udev instances that insist on reloading a module when it is removed from the kernel due to the new uevents for bind/unbind. This fixes the reported regression, hopefully some year in the future we can drop the workaround, once users update to the latest version, but I'm not holding my breath. And then there's a build fix for a linker warning, and a buffer overflow fix to match the PCI fixes you took through the PCI tree in the same area. All of these have been in linux-next for a few weeks while I've been traveling, sorry for the delay. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Dmitry Torokhov (1): driver core: suppress sending MODALIAS in UNBIND uevents Greg Kroah-Hartman (2): fpga: altera-cvp: remove DRIVER_ATTR() usage driver core: remove DRIVER_ATTR Nicolai Stange (1): driver core: platform: Don't read past the end of "driver_override" buffer Sudeep Holla (1): base: arch_topology: fix section mismatch build warnings Documentation/driver-model/driver.txt | 7 ++--- Documentation/filesystems/sysfs.txt | 3 ++- drivers/base/arch_topology.c | 12 ++++----- drivers/base/platform.c | 3 ++- drivers/fpga/altera-cvp.c | 6 ++--- include/linux/device.h | 2 -- lib/kobject_uevent.c | 49 +++++++++++++++++++++++++++++------ 7 files changed, 58 insertions(+), 24 deletions(-)