* [PATCH] platform/x86: Add ACPI_COMPANION() NULL check in topstar_acpi_probe
@ 2026-08-11 2:21 Xueqin Luo
2026-08-12 18:10 ` Wysocki, Rafael J
0 siblings, 1 reply; 2+ messages in thread
From: Xueqin Luo @ 2026-08-11 2:21 UTC (permalink / raw)
To: herton, hansg, ilpo.jarvinen, rafael.j.wysocki,
platform-driver-x86, linux-kernel
Cc: Xueqin Luo
Add NULL check for ACPI_COMPANION() in topstar_acpi_probe() to prevent
NULL pointer dereference when driver_override matches a device without
ACPI companion.
Fixes: 3471415c8186 ("platform/x86: topstar-laptop: Convert ACPI driver to a platform one")
Signed-off-by: Xueqin Luo <luoxueqin@kylinos.cn>
---
drivers/platform/x86/topstar-laptop.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/platform/x86/topstar-laptop.c b/drivers/platform/x86/topstar-laptop.c
index 0e842c55dcc5..730a599abf0f 100644
--- a/drivers/platform/x86/topstar-laptop.c
+++ b/drivers/platform/x86/topstar-laptop.c
@@ -287,10 +287,14 @@ static const struct dmi_system_id topstar_dmi_ids[] = {
static int topstar_acpi_probe(struct platform_device *pdev)
{
- struct acpi_device *device = ACPI_COMPANION(&pdev->dev);
+ struct acpi_device *device;
struct topstar_laptop *topstar;
int err;
+ device = ACPI_COMPANION(&pdev->dev);
+ if (!device)
+ return -ENODEV;
+
dmi_check_system(topstar_dmi_ids);
topstar = kzalloc_obj(struct topstar_laptop);
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] platform/x86: Add ACPI_COMPANION() NULL check in topstar_acpi_probe
2026-08-11 2:21 [PATCH] platform/x86: Add ACPI_COMPANION() NULL check in topstar_acpi_probe Xueqin Luo
@ 2026-08-12 18:10 ` Wysocki, Rafael J
0 siblings, 0 replies; 2+ messages in thread
From: Wysocki, Rafael J @ 2026-08-12 18:10 UTC (permalink / raw)
To: Xueqin Luo, herton, hansg, ilpo.jarvinen, platform-driver-x86,
linux-kernel, linux-acpi@vger.kernel.org
On 8/11/2026 4:21 AM, Xueqin Luo wrote:
> Add NULL check for ACPI_COMPANION() in topstar_acpi_probe() to prevent
> NULL pointer dereference when driver_override matches a device without
> ACPI companion.
>
> Fixes: 3471415c8186 ("platform/x86: topstar-laptop: Convert ACPI driver to a platform one")
> Signed-off-by: Xueqin Luo <luoxueqin@kylinos.cn>
I'm not sure why I haven't sent a patch to address this, so
Reviewed-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
> ---
> drivers/platform/x86/topstar-laptop.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/platform/x86/topstar-laptop.c b/drivers/platform/x86/topstar-laptop.c
> index 0e842c55dcc5..730a599abf0f 100644
> --- a/drivers/platform/x86/topstar-laptop.c
> +++ b/drivers/platform/x86/topstar-laptop.c
> @@ -287,10 +287,14 @@ static const struct dmi_system_id topstar_dmi_ids[] = {
>
> static int topstar_acpi_probe(struct platform_device *pdev)
> {
> - struct acpi_device *device = ACPI_COMPANION(&pdev->dev);
> + struct acpi_device *device;
> struct topstar_laptop *topstar;
> int err;
>
> + device = ACPI_COMPANION(&pdev->dev);
> + if (!device)
> + return -ENODEV;
> +
> dmi_check_system(topstar_dmi_ids);
>
> topstar = kzalloc_obj(struct topstar_laptop);
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-08-12 18:10 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-11 2:21 [PATCH] platform/x86: Add ACPI_COMPANION() NULL check in topstar_acpi_probe Xueqin Luo
2026-08-12 18:10 ` Wysocki, Rafael J
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.