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=-16.4 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,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED 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 21FA9C07E99 for ; Mon, 12 Jul 2021 18:04:08 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0761061222 for ; Mon, 12 Jul 2021 18:04:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234900AbhGLSGz (ORCPT ); Mon, 12 Jul 2021 14:06:55 -0400 Received: from mail.kernel.org ([198.145.29.99]:36076 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234933AbhGLSGz (ORCPT ); Mon, 12 Jul 2021 14:06:55 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 9E8E9611C1; Mon, 12 Jul 2021 18:04:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1626113046; bh=tSb6DQiuoOKUATxaFNI+lbb5KcWBZEHJUOZoO1nojng=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Xp1umJtjcKTS4aN2Ze6YimBtfv1nQZzHdul6D4CcnwVfHTpIXn3wgadfdjaWMPA9L SBKeKZrwYkY2fKjQHQL8hgAghnLP8bAgwrp3QR+4uLesPiboSv1QURzKeu3yHeMGkp 9yimTwdNuZi6vnUnOqUNDOiFSxKSgt32kwZs2ZM8= Date: Mon, 12 Jul 2021 20:04:03 +0200 From: Greg Kroah-Hartman To: "Rafael J. Wysocki" Cc: "Rafael J. Wysocki" , Andy Shevchenko , Linux ACPI , LKML , "Krogerus, Heikki" Subject: Re: [PATCH v1 6/6] driver core: Split device_platform_notify() Message-ID: References: <2780027.e9J7NaK4W3@kreacher> <7971483.NyiUUSuA9g@kreacher> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7971483.NyiUUSuA9g@kreacher> Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org On Mon, Jul 12, 2021 at 07:28:16PM +0200, Rafael J. Wysocki wrote: > From: Rafael J. Wysocki > > Split device_platform_notify_remove) out of device_platform_notify() > and call the latter on device addition and the former on device > removal. > > No intentional functional impact. > > Signed-off-by: Rafael J. Wysocki > --- > drivers/base/core.c | 37 +++++++++++++++++-------------------- > 1 file changed, 17 insertions(+), 20 deletions(-) Reviewed-by: Greg Kroah-Hartman