mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] platform/x86: samsung-galaxybook: Fix block_recording not supported logic
@ 2025-03-03 13:24 Joshua Grisham
  2025-03-05  0:29 ` Armin Wolf
  2025-03-05 13:09 ` Ilpo Järvinen
  0 siblings, 2 replies; 3+ messages in thread
From: Joshua Grisham @ 2025-03-03 13:24 UTC (permalink / raw)
  To: W_Armin, thomas, kuurtb, ilpo.jarvinen, hdegoede,
	platform-driver-x86, linux-kernel
  Cc: Joshua Grisham

Fixes logic error when block_recording is not supported but the fw attr was
being added anyway (reported by GitHub user bbregeault).

Tested myself on a Samsung Galaxy Book2 Pro (has block_recording) and by
bbregeault on a Galaxy Book2 Business (does not have block_recording).

Fixes: 56f529ce4370 ("platform/x86: samsung-galaxybook: Add samsung-galaxybook driver")

Signed-off-by: Joshua Grisham <josh@joshuagrisham.com>

---
v1->v2:
- Add Fixes tag with prior commit (thanks Ilpo for catching!)
---
 drivers/platform/x86/samsung-galaxybook.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/drivers/platform/x86/samsung-galaxybook.c b/drivers/platform/x86/samsung-galaxybook.c
index de1ed2dc6..5878a3519 100644
--- a/drivers/platform/x86/samsung-galaxybook.c
+++ b/drivers/platform/x86/samsung-galaxybook.c
@@ -1100,11 +1100,13 @@ static int galaxybook_fw_attrs_init(struct samsung_galaxybook *galaxybook)
 	}
 
 	err = galaxybook_block_recording_init(galaxybook);
-	if (!err)
-		galaxybook->has_block_recording = true;
-	else if (err != GB_NOT_SUPPORTED)
+	if (err == GB_NOT_SUPPORTED)
+		return 0;
+	else if (err)
 		return err;
 
+	galaxybook->has_block_recording = true;
+
 	return galaxybook_fw_attr_init(galaxybook,
 				       GB_ATTR_BLOCK_RECORDING,
 				       &block_recording_acpi_get,
-- 
2.45.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] platform/x86: samsung-galaxybook: Fix block_recording not supported logic
  2025-03-03 13:24 [PATCH v2] platform/x86: samsung-galaxybook: Fix block_recording not supported logic Joshua Grisham
@ 2025-03-05  0:29 ` Armin Wolf
  2025-03-05 13:09 ` Ilpo Järvinen
  1 sibling, 0 replies; 3+ messages in thread
From: Armin Wolf @ 2025-03-05  0:29 UTC (permalink / raw)
  To: Joshua Grisham, thomas, kuurtb, ilpo.jarvinen, hdegoede,
	platform-driver-x86, linux-kernel

Am 03.03.25 um 14:24 schrieb Joshua Grisham:

> Fixes logic error when block_recording is not supported but the fw attr was
> being added anyway (reported by GitHub user bbregeault).
>
> Tested myself on a Samsung Galaxy Book2 Pro (has block_recording) and by
> bbregeault on a Galaxy Book2 Business (does not have block_recording).

For the future you can use Tested-by tags to indicate who tested this patch.
For now:

Reviewed-by: Armin Wolf <W_Armin@gmx.de>

> Fixes: 56f529ce4370 ("platform/x86: samsung-galaxybook: Add samsung-galaxybook driver")
>
> Signed-off-by: Joshua Grisham <josh@joshuagrisham.com>
>
> ---
> v1->v2:
> - Add Fixes tag with prior commit (thanks Ilpo for catching!)
> ---
>   drivers/platform/x86/samsung-galaxybook.c | 8 +++++---
>   1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/platform/x86/samsung-galaxybook.c b/drivers/platform/x86/samsung-galaxybook.c
> index de1ed2dc6..5878a3519 100644
> --- a/drivers/platform/x86/samsung-galaxybook.c
> +++ b/drivers/platform/x86/samsung-galaxybook.c
> @@ -1100,11 +1100,13 @@ static int galaxybook_fw_attrs_init(struct samsung_galaxybook *galaxybook)
>   	}
>
>   	err = galaxybook_block_recording_init(galaxybook);
> -	if (!err)
> -		galaxybook->has_block_recording = true;
> -	else if (err != GB_NOT_SUPPORTED)
> +	if (err == GB_NOT_SUPPORTED)
> +		return 0;
> +	else if (err)
>   		return err;
>
> +	galaxybook->has_block_recording = true;
> +
>   	return galaxybook_fw_attr_init(galaxybook,
>   				       GB_ATTR_BLOCK_RECORDING,
>   				       &block_recording_acpi_get,

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] platform/x86: samsung-galaxybook: Fix block_recording not supported logic
  2025-03-03 13:24 [PATCH v2] platform/x86: samsung-galaxybook: Fix block_recording not supported logic Joshua Grisham
  2025-03-05  0:29 ` Armin Wolf
@ 2025-03-05 13:09 ` Ilpo Järvinen
  1 sibling, 0 replies; 3+ messages in thread
From: Ilpo Järvinen @ 2025-03-05 13:09 UTC (permalink / raw)
  To: W_Armin, thomas, kuurtb, hdegoede, platform-driver-x86,
	linux-kernel, Joshua Grisham

On Mon, 03 Mar 2025 14:24:32 +0100, Joshua Grisham wrote:

> Fixes logic error when block_recording is not supported but the fw attr was
> being added anyway (reported by GitHub user bbregeault).
> 
> Tested myself on a Samsung Galaxy Book2 Pro (has block_recording) and by
> bbregeault on a Galaxy Book2 Business (does not have block_recording).
> 
> Fixes: 56f529ce4370 ("platform/x86: samsung-galaxybook: Add samsung-galaxybook driver")
> 
> [...]


Thank you for your contribution, it has been applied to my local
review-ilpo-next branch. Note it will show up in the public
platform-drivers-x86/review-ilpo-next branch only once I've pushed my
local branch there, which might take a while.

The list of commits applied:
[1/1] platform/x86: samsung-galaxybook: Fix block_recording not supported logic
      commit: 7bb84ca9b8d0cfff76a6108636aec1a5a8cdcd49

--
 i.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-03-05 13:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-03-03 13:24 [PATCH v2] platform/x86: samsung-galaxybook: Fix block_recording not supported logic Joshua Grisham
2025-03-05  0:29 ` Armin Wolf
2025-03-05 13:09 ` Ilpo Järvinen

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®