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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6FE2EFA373D for ; Tue, 25 Oct 2022 22:44:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231628AbiJYWoy (ORCPT ); Tue, 25 Oct 2022 18:44:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39286 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231640AbiJYWox (ORCPT ); Tue, 25 Oct 2022 18:44:53 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E29FB31DC1; Tue, 25 Oct 2022 15:44:51 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 9B085B81F21; Tue, 25 Oct 2022 22:44:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 16F21C433C1; Tue, 25 Oct 2022 22:44:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1666737889; bh=fCUG0YsjLHoNvkMm52vxSui0PhkbCAXk7xTAaJFc6fE=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=C2q0PH1T757hyxwmb+kLorokK0biJQUuTZxCL0tnec0d5ITIAAVMI9cm4v1HgRNic yQOT4uUHyiSHhsflQ3YPy/RZDVa6AG4Yv2zhDzlr15Rz7RFrpBu3TfSVN/DmDr2z3G nTuVk0clVNFsoZR+0EBa0APMVOBx6CJVnBtgfHt1dTRNRbZ88VTqJ6Erq75rEqhdB3 Eg2iYkNtxDcBtIXl9fbOXq0aoqc1tPHyKw4oLFfuJLYh2kagebz2rWQK0/CsJh98Wx WWDFIKEleWLIBV+6+qXd/HwTY8UodMccacittMOv0gLsoUUYeEEFnWthlKUYtxzo/t WO4UwQXSKOWKw== Date: Tue, 25 Oct 2022 17:44:47 -0500 From: Bjorn Helgaas To: David Airlie Cc: Krzysztof =?utf-8?Q?Wilczy=C5=84ski?= , linux-pm@vger.kernel.org, linux-pci@vger.kernel.org, Vaibhav Gupta , linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, Bjorn Helgaas , "Rafael J . Wysocki" Subject: Re: [PATCH v2 0/8] agp: Convert to generic power management Message-ID: <20221025224447.GA694653@bhelgaas> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221025203852.681822-1-helgaas@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org On Tue, Oct 25, 2022 at 03:38:44PM -0500, Bjorn Helgaas wrote: > From: Bjorn Helgaas > > Vaibhav converted several AGP drivers from legacy PCI power management to > generic power management [1]. This series converts the rest of them. > > v1 posted at [2]. > > Changes from v1 to v2: > - Convert from SIMPLE_DEV_PM_OPS() (which is deprecated) to > DEFINE_SIMPLE_DEV_PM_OPS() and remove __maybe_unused annotations. > > [1] https://lore.kernel.org/all/20210112080924.1038907-1-vaibhavgupta40@gmail.com/#t > [2] https://lore.kernel.org/all/20220607034340.307318-1-helgaas@kernel.org/ > > Bjorn Helgaas (8): > agp/efficeon: Convert to generic power management > agp/intel: Convert to generic power management > agp/amd-k7: Convert to generic power management > agp/ati: Convert to generic power management > agp/nvidia: Convert to generic power management > agp/amd64: Update to DEFINE_SIMPLE_DEV_PM_OPS() > agp/sis: Update to DEFINE_SIMPLE_DEV_PM_OPS() > agp/via: Update to DEFINE_SIMPLE_DEV_PM_OPS() > > drivers/char/agp/amd-k7-agp.c | 24 ++++-------------------- > drivers/char/agp/amd64-agp.c | 6 ++---- > drivers/char/agp/ati-agp.c | 22 ++++------------------ > drivers/char/agp/efficeon-agp.c | 16 ++++------------ > drivers/char/agp/intel-agp.c | 11 +++++------ > drivers/char/agp/nvidia-agp.c | 24 ++++-------------------- > drivers/char/agp/sis-agp.c | 7 ++----- > drivers/char/agp/via-agp.c | 6 ++---- > 8 files changed, 27 insertions(+), 89 deletions(-) Applied with Dave's ack to pci/pm-agp for v6.2.