From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 6CBEB1DDC33; Wed, 20 Aug 2025 15:59:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755705549; cv=none; b=gwwoH0SBbzOUKuQu5wHZW9XGencxGt2jb/v7RKr4XfFjL14p72Bq9+PIdDBOXteiSq1hSI18A/f/NygW+VnqsbyOnOWFAyyUQHfDEaX1aZvgQC9KkFTBxwkWcghR911HmsjJJafZel95ltLhDjQ/och0IlSDCnikezU/V/8tGNs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755705549; c=relaxed/simple; bh=Btlz6e0m5nsKlm/WiyEAFlAcvcNJrm4cKvgRCdFu898=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=MO5h+ZW2WIariK+Ogs0TPETIhntHoHHtUl88B7AQfXyA7H+hvfiHujaJ3Z72MGCrvJrKuRA/iGF4GIasej6wCz7cRX3rtiZyyh1Qjtq6QUCE0Tcmoq4qkDiMx2z5TI/7qsDOzIXl0a40NR+iOQy3SCvmmwLaX344Z7TM4wiM1EM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=o+AdY+vS; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="o+AdY+vS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E3910C113CF; Wed, 20 Aug 2025 15:59:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1755705549; bh=Btlz6e0m5nsKlm/WiyEAFlAcvcNJrm4cKvgRCdFu898=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=o+AdY+vSvwyhTwbI+H/jBNGpY/E2Hr5ZSVxwGBXnxBEFEuDsow2eYFvlsqpt9IH9g zvyQ15X8ZGKGKYB7FscQFyKkuDtOjArVt4P0P6Gz6rX948+V6pcRpZuVhkhWHrgM1t 3JKzVMhpLw/vJElHd1AdUcQ8jJyyyR4qPNAvjt3tLpevr4hsB5HwY2OCBLCWMach9Z pnnwsJiqM6t/jEqjjplonyMNDpkqHKQRRyGLFDBfUoZUoPQYcmhU5GIrM7woNaXJE8 RKS+D70JGCQhMMf3lK/yJZ44b9bih3xnrzO1rQqzaIyaIgUHxwXqFtdpbcU5Y6lWWK s4eMWm/x63W7g== From: Jisheng Zhang To: Doug Berger , Florian Fainelli , Linus Walleij , Bartosz Golaszewski , Michael Buesch , Hoan Tran , Andy Shevchenko , Daniel Palmer , Romain Perier , Grygorii Strashko , Santosh Shilimkar , Kevin Hilman , Robert Jarzmik , Kunihiko Hayashi , Masami Hiramatsu , Shubhrajyoti Datta , Srinivas Neeli , Michal Simek Cc: Broadcom internal kernel review list , linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, linux@ew.tq-group.com Subject: [PATCH 08/16] gpio: mlxbf2: Use modern PM macros Date: Wed, 20 Aug 2025 23:40:29 +0800 Message-ID: <20250820154037.22228-9-jszhang@kernel.org> X-Mailer: git-send-email 2.50.0 In-Reply-To: <20250820154037.22228-1-jszhang@kernel.org> References: <20250820154037.22228-1-jszhang@kernel.org> Precedence: bulk X-Mailing-List: linux-omap@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Use the modern PM macros for the suspend and resume functions to be automatically dropped by the compiler when CONFIG_PM or CONFIG_PM_SLEEP are disabled, without having to use __maybe_unused Signed-off-by: Jisheng Zhang --- drivers/gpio/gpio-mlxbf2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpio/gpio-mlxbf2.c b/drivers/gpio/gpio-mlxbf2.c index 390f2e74a9d8..f3112d949195 100644 --- a/drivers/gpio/gpio-mlxbf2.c +++ b/drivers/gpio/gpio-mlxbf2.c @@ -431,7 +431,7 @@ mlxbf2_gpio_probe(struct platform_device *pdev) return 0; } -static int __maybe_unused mlxbf2_gpio_suspend(struct device *dev) +static int mlxbf2_gpio_suspend(struct device *dev) { struct mlxbf2_gpio_context *gs = dev_get_drvdata(dev); @@ -443,7 +443,7 @@ static int __maybe_unused mlxbf2_gpio_suspend(struct device *dev) return 0; } -static int __maybe_unused mlxbf2_gpio_resume(struct device *dev) +static int mlxbf2_gpio_resume(struct device *dev) { struct mlxbf2_gpio_context *gs = dev_get_drvdata(dev); @@ -454,7 +454,7 @@ static int __maybe_unused mlxbf2_gpio_resume(struct device *dev) return 0; } -static SIMPLE_DEV_PM_OPS(mlxbf2_pm_ops, mlxbf2_gpio_suspend, mlxbf2_gpio_resume); +static DEFINE_SIMPLE_DEV_PM_OPS(mlxbf2_pm_ops, mlxbf2_gpio_suspend, mlxbf2_gpio_resume); static const struct acpi_device_id __maybe_unused mlxbf2_gpio_acpi_match[] = { { "MLNXBF22", 0 }, @@ -466,7 +466,7 @@ static struct platform_driver mlxbf2_gpio_driver = { .driver = { .name = "mlxbf2_gpio", .acpi_match_table = mlxbf2_gpio_acpi_match, - .pm = &mlxbf2_pm_ops, + .pm = pm_sleep_ptr(&mlxbf2_pm_ops), }, .probe = mlxbf2_gpio_probe, }; -- 2.50.1