From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-26.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 18E27C433ED for ; Sun, 16 May 2021 09:00:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EC3EB6105A for ; Sun, 16 May 2021 09:00:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234373AbhEPJCE (ORCPT ); Sun, 16 May 2021 05:02:04 -0400 Received: from mail.kernel.org ([198.145.29.99]:49460 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229445AbhEPJCD (ORCPT ); Sun, 16 May 2021 05:02:03 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 464A36103E; Sun, 16 May 2021 09:00:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1621155647; bh=kGMfcyr10SdkyxIcTSHAHAkouzifg6qsml+5rd/q51M=; h=Date:From:To:Cc:Subject:From; b=DJkwjmb4yPmxDaz0KRZmMn2+xkdlXYzRAR9jEhrzm2xPusMr/adtI2Yv0dnnphZoB wskWEPEXO/x2hBcY5AqSjd6Cy3KoGvv4QyKEGlaiDJtZyVkeK2LEbW76+oTEUQUGH2 mv4nlJKhP2k94ujZYybwSBQb/Lagi78UjKWirApo= Date: Sun, 16 May 2021 11:00:45 +0200 From: Greg KH To: Linus Torvalds , Andrew Morton Cc: linux-kernel@vger.kernel.org, Stephen Rothwell , Saravana Kannan Subject: [GIT PULL] Driver core fixes for 5.13-rc2 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following changes since commit 6efb943b8616ec53a5e444193dccf1af9ad627b5: Linux 5.13-rc1 (2021-05-09 14:17:44 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git tags/driver-core-5.13-rc2 for you to fetch changes up to bb4031b8af804244a7e4349d38f6624f68664bd6: clk: Skip clk provider registration when np is NULL (2021-05-11 08:47:25 +0200) ---------------------------------------------------------------- Driver core fixes for 5.13-rc2 Here are 2 driver fixes for driver core changes that happened in 5.13-rc1. The clk driver fix resolves a many-reported issue with booting some devices, and the USB typec fix resolves the reported problem of USB systems on some embedded boards. Both of these have been in linux-next this week with no reported issues. Signed-off-by: Greg Kroah-Hartman ---------------------------------------------------------------- Saravana Kannan (1): usb: typec: tcpm: Don't block probing of consumers of "connector" nodes Tudor Ambarus (1): clk: Skip clk provider registration when np is NULL drivers/base/core.c | 3 ++- drivers/clk/clk.c | 9 +++++++++ drivers/usb/typec/tcpm/tcpm.c | 9 +++++++++ include/linux/fwnode.h | 1 + 4 files changed, 21 insertions(+), 1 deletion(-)