mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Jonathan Woithe <jwoithe@just42.net>
To: "Rafael J.  Wysocki" <rafael@kernel.org>
Cc: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
	platform-driver-x86@vger.kernel.org,
	LKML <linux-kernel@vger.kernel.org>,
	"Linux ACPI" <linux-acpi@vger.kernel.org>,
	"Hans de Goede" <hansg@kernel.org>,
	"Andy Shevchenko" <andriy.shevchenko@linux.intel.com>,
	"Corentin Chary" <corentin.chary@gmail.com>,
	"Luke D. Jones" <luke@ljones.dev>,
	"Denis Benato" <denis.benato@linux.dev>,
	"Robert Gerlach" <khnz@gmx.de>,
	"Henrique de Moraes Holschuh" <hmh@hmh.eng.br>,
	"Mark Pearson" <mpearson-lenovo@squebb.ca>,
	"Derek J. Clark" <derekjohn.clark@gmail.com>,
	"Kenneth Chan" <kenneth.t.chan@gmail.com>,
	"Mattia Dongili" <malattia@linux.it>,
	"Azael Avalos" <coproscefalo@gmail.com>
Subject: Re: [PATCH v1 03/10] platform/x86: fujitsu-laptop: Stop setting acpi_device_name/class()
Date: Fri, 3 Jul 2026 22:38:49 +0930	[thread overview]
Message-ID: <ake0YZM6W0f/Jqn3@marvin.atrad.com.au> (raw)
In-Reply-To: <3441919.aeNJFYEL58@rafael.j.wysocki>

On Fri, Jul 03, 2026 at 01:23:31PM +0200, Rafael J.  Wysocki wrote:
> From: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
> 
> The driver sets acpi_device_name() that are only used for printing
> messages and initializing input class device names.  Since
> ACPI_FUJITSU_BL_DEVICE_NAME and ACPI_FUJITSU_LAPTOP_DEVICE_NAME can
> be used directly in all of those cases, make the driver do so and
> stop setting acpi_device_name() in it.
> 
> Likewise, acpi_device_class() set by the driver are never read
> afterward, so make the driver stop setting it and drop the symbol
> defined specifically for this purpose.
> 
> No intentional functional impact.
> 
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>

Looks good to me for fujitsu-laptop.

Acked-by: Jonathan Woithe <jwoithe@just42.net>


> ---
>  drivers/platform/x86/fujitsu-laptop.c | 18 ++++++------------
>  1 file changed, 6 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c
> index 54d0b9cec4d3..ea543deef68f 100644
> --- a/drivers/platform/x86/fujitsu-laptop.c
> +++ b/drivers/platform/x86/fujitsu-laptop.c
> @@ -56,7 +56,6 @@
>  
>  #define FUJITSU_LCD_N_LEVELS		8
>  
> -#define ACPI_FUJITSU_CLASS		"fujitsu"
>  #define ACPI_FUJITSU_BL_HID		"FUJ02B1"
>  #define ACPI_FUJITSU_BL_DRIVER_NAME	"Fujitsu laptop FUJ02B1 ACPI brightness driver"
>  #define ACPI_FUJITSU_BL_DEVICE_NAME	"Fujitsu FUJ02B1"
> @@ -466,7 +465,7 @@ static int acpi_fujitsu_bl_input_setup(struct device *dev)
>  	snprintf(priv->phys, sizeof(priv->phys), "%s/video/input0",
>  		 acpi_device_hid(device));
>  
> -	priv->input->name = acpi_device_name(device);
> +	priv->input->name = ACPI_FUJITSU_BL_DEVICE_NAME;
>  	priv->input->phys = priv->phys;
>  	priv->input->id.bustype = BUS_HOST;
>  	priv->input->id.product = 0x06;
> @@ -546,13 +545,11 @@ static int acpi_fujitsu_bl_probe(struct platform_device *pdev)
>  		return -ENOMEM;
>  
>  	fujitsu_bl = priv;
> -	strscpy(acpi_device_name(device), ACPI_FUJITSU_BL_DEVICE_NAME);
> -	strscpy(acpi_device_class(device), ACPI_FUJITSU_CLASS);
>  
>  	platform_set_drvdata(pdev, priv);
>  
> -	pr_info("ACPI: %s [%s]\n",
> -		acpi_device_name(device), acpi_device_bid(device));
> +	pr_info("ACPI: %s [%s]\n", ACPI_FUJITSU_BL_DEVICE_NAME,
> +		acpi_device_bid(device));
>  
>  	if (get_max_brightness(&pdev->dev) <= 0)
>  		priv->max_brightness = FUJITSU_LCD_N_LEVELS;
> @@ -681,7 +678,7 @@ static int acpi_fujitsu_laptop_input_setup(struct device *dev)
>  	snprintf(priv->phys, sizeof(priv->phys), "%s/input0",
>  		 acpi_device_hid(device));
>  
> -	priv->input->name = acpi_device_name(device);
> +	priv->input->name = ACPI_FUJITSU_LAPTOP_DEVICE_NAME;
>  	priv->input->phys = priv->phys;
>  	priv->input->id.bustype = BUS_HOST;
>  
> @@ -1012,9 +1009,6 @@ static int acpi_fujitsu_laptop_probe(struct platform_device *pdev)
>  	WARN_ONCE(fext, "More than one FUJ02E3 ACPI device was found.  Driver may not work as intended.");
>  	fext = &pdev->dev;
>  
> -	strscpy(acpi_device_name(device), ACPI_FUJITSU_LAPTOP_DEVICE_NAME);
> -	strscpy(acpi_device_class(device), ACPI_FUJITSU_CLASS);
> -
>  	platform_set_drvdata(pdev, priv);
>  
>  	/* kfifo */
> @@ -1024,8 +1018,8 @@ static int acpi_fujitsu_laptop_probe(struct platform_device *pdev)
>  	if (ret)
>  		return ret;
>  
> -	pr_info("ACPI: %s [%s]\n",
> -		acpi_device_name(device), acpi_device_bid(device));
> +	pr_info("ACPI: %s [%s]\n", ACPI_FUJITSU_LAPTOP_DEVICE_NAME,
> +		acpi_device_bid(device));
>  
>  	while (call_fext_func(fext, FUNC_BUTTONS, 0x1, 0x0, 0x0) != 0 &&
>  	       i++ < MAX_HOTKEY_RINGBUFFER_SIZE)
> -- 
> 2.51.0
> 
> 
> 

-- 

  reply	other threads:[~2026-07-03 13:22 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-03 11:15 [PATCH v1 00/10] platform/x86: Stop using acpi_device_name/class() Rafael J. Wysocki
2026-07-03 11:19 ` [PATCH v1 01/10] platform/x86: asus-laptop: Stop setting acpi_device_name/class() Rafael J.  Wysocki
2026-07-03 11:21 ` [PATCH v1 02/10] platform/x86: eeepc-laptop: " Rafael J.  Wysocki
2026-07-03 11:23 ` [PATCH v1 03/10] platform/x86: fujitsu-laptop: " Rafael J.  Wysocki
2026-07-03 13:08   ` Jonathan Woithe [this message]
2026-07-03 11:28 ` [PATCH v1 04/10] platform/x86: fujitsu-tablet: " Rafael J.  Wysocki
2026-07-03 11:30 ` [PATCH v1 05/10] platform/x86: thinkpad_acpi: Stop setting acpi_device_class() Rafael J.  Wysocki
2026-07-03 12:18   ` Andy Shevchenko
2026-07-03 12:20     ` Rafael J. Wysocki (Intel)
2026-07-03 12:18   ` Mark Pearson
2026-07-03 11:30 ` [PATCH v1 06/10] platform/x86: panasonic-laptop: Stop setting acpi_device_name/class() Rafael J. Wysocki (Intel)
2026-07-03 11:32 ` [PATCH v1 07/10] platform/x86: sony-laptop: Stop setting acpi_device_class() Rafael J.  Wysocki
2026-07-03 11:36 ` [PATCH v1 08/10] platform/x86: toshiba_acpi: Do not use uninitialized device_class Rafael J.  Wysocki
2026-07-03 11:36 ` [PATCH v1 09/10] platform/x86: toshiba_haps: " Rafael J.  Wysocki
2026-07-03 11:37 ` [PATCH v1 10/10] platform/x86: xo15-ebook: Stop setting acpi_device_name/class() Rafael J.  Wysocki
2026-07-03 12:10 ` [PATCH v1 00/10] platform/x86: Stop using acpi_device_name/class() Andy Shevchenko
2026-07-03 12:15   ` Rafael J. Wysocki (Intel)
2026-07-03 12:41     ` Andy Shevchenko
2026-07-03 12:44       ` Rafael J. Wysocki (Intel)
2026-07-03 12:47         ` Andy Shevchenko
2026-07-03 12:19   ` Andy Shevchenko
2026-07-03 12:24     ` Rafael J. Wysocki (Intel)
2026-07-06 17:20 ` Ilpo Järvinen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ake0YZM6W0f/Jqn3@marvin.atrad.com.au \
    --to=jwoithe@just42.net \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=coproscefalo@gmail.com \
    --cc=corentin.chary@gmail.com \
    --cc=denis.benato@linux.dev \
    --cc=derekjohn.clark@gmail.com \
    --cc=hansg@kernel.org \
    --cc=hmh@hmh.eng.br \
    --cc=ilpo.jarvinen@linux.intel.com \
    --cc=kenneth.t.chan@gmail.com \
    --cc=khnz@gmx.de \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luke@ljones.dev \
    --cc=malattia@linux.it \
    --cc=mpearson-lenovo@squebb.ca \
    --cc=platform-driver-x86@vger.kernel.org \
    --cc=rafael@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®