public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] panasonic-laptop: fix acpi_pcc_write_sset return value
@ 2010-07-07  0:21 Axel Lin
  2010-07-07  0:29 ` Dmitry Torokhov
  2010-07-07  5:40 ` Harald Welte
  0 siblings, 2 replies; 3+ messages in thread
From: Axel Lin @ 2010-07-07  0:21 UTC (permalink / raw)
  To: linux-kernel
  Cc: Harald Welte, Matthew Garrett, Richard Purdie,
	Márton Németh, Jiri Kosina, Dmitry Torokhov,
	platform-driver-x86

In current implementation, acpi_pcc_write_sset return 1
if write is successful, 0 if write is failed.
But all the callers consider acpi_pcc_write_sset return 0
if write is successful and return negtive if write is failed.

This patch changes the implementation of acpi_pcc_write_sset to
return 0 if write is successful, -EIO if write is failed.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/platform/x86/panasonic-laptop.c |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/drivers/platform/x86/panasonic-laptop.c b/drivers/platform/x86/panasonic-laptop.c
index 2fb9a32..ec01c3d 100644
--- a/drivers/platform/x86/panasonic-laptop.c
+++ b/drivers/platform/x86/panasonic-laptop.c
@@ -248,7 +248,7 @@ static int acpi_pcc_write_sset(struct pcc_acpi *pcc, int func, int val)
 	status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SSET,
 				      &params, NULL);
 
-	return status == AE_OK;
+	return (status == AE_OK) ? 0 : -EIO;
 }
 
 static inline int acpi_pcc_get_sqty(struct acpi_device *device)
@@ -586,7 +586,6 @@ static int acpi_pcc_init_input(struct pcc_acpi *pcc)
 static int acpi_pcc_hotkey_resume(struct acpi_device *device)
 {
 	struct pcc_acpi *pcc = acpi_driver_data(device);
-	acpi_status status = AE_OK;
 
 	if (device == NULL || pcc == NULL)
 		return -EINVAL;
@@ -594,9 +593,7 @@ static int acpi_pcc_hotkey_resume(struct acpi_device *device)
 	ACPI_DEBUG_PRINT((ACPI_DB_ERROR, "Sticky mode restore: %d\n",
 			  pcc->sticky_mode));
 
-	status = acpi_pcc_write_sset(pcc, SINF_STICKY_KEY, pcc->sticky_mode);
-
-	return status == AE_OK ? 0 : -EINVAL;
+	return acpi_pcc_write_sset(pcc, SINF_STICKY_KEY, pcc->sticky_mode);
 }
 
 static int acpi_pcc_hotkey_add(struct acpi_device *device)
-- 
1.5.4.3




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

* Re: [PATCH v2] panasonic-laptop: fix acpi_pcc_write_sset return value
  2010-07-07  0:21 [PATCH v2] panasonic-laptop: fix acpi_pcc_write_sset return value Axel Lin
@ 2010-07-07  0:29 ` Dmitry Torokhov
  2010-07-07  5:40 ` Harald Welte
  1 sibling, 0 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2010-07-07  0:29 UTC (permalink / raw)
  To: Axel Lin
  Cc: linux-kernel, Harald Welte, Matthew Garrett, Richard Purdie,
	Márton Németh, Jiri Kosina, platform-driver-x86

On Wed, Jul 07, 2010 at 08:21:48AM +0800, Axel Lin wrote:
> In current implementation, acpi_pcc_write_sset return 1
> if write is successful, 0 if write is failed.
> But all the callers consider acpi_pcc_write_sset return 0
> if write is successful and return negtive if write is failed.
> 
> This patch changes the implementation of acpi_pcc_write_sset to
> return 0 if write is successful, -EIO if write is failed.
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
>  drivers/platform/x86/panasonic-laptop.c |    7 ++-----
>  1 files changed, 2 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/platform/x86/panasonic-laptop.c b/drivers/platform/x86/panasonic-laptop.c
> index 2fb9a32..ec01c3d 100644
> --- a/drivers/platform/x86/panasonic-laptop.c
> +++ b/drivers/platform/x86/panasonic-laptop.c
> @@ -248,7 +248,7 @@ static int acpi_pcc_write_sset(struct pcc_acpi *pcc, int func, int val)
>  	status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SSET,
>  				      &params, NULL);
>  
> -	return status == AE_OK;
> +	return (status == AE_OK) ? 0 : -EIO;
>  }
>  
>  static inline int acpi_pcc_get_sqty(struct acpi_device *device)
> @@ -586,7 +586,6 @@ static int acpi_pcc_init_input(struct pcc_acpi *pcc)
>  static int acpi_pcc_hotkey_resume(struct acpi_device *device)
>  {
>  	struct pcc_acpi *pcc = acpi_driver_data(device);
> -	acpi_status status = AE_OK;
>  
>  	if (device == NULL || pcc == NULL)
>  		return -EINVAL;

Looks good, but why don't you also kill these useless checks while you
are at it?  Otherwise:

Acked-by: Dmitry Torokhov <dtor@mail.ru>

Thanks.

-- 
Dmitry

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

* Re: [PATCH v2] panasonic-laptop: fix acpi_pcc_write_sset return value
  2010-07-07  0:21 [PATCH v2] panasonic-laptop: fix acpi_pcc_write_sset return value Axel Lin
  2010-07-07  0:29 ` Dmitry Torokhov
@ 2010-07-07  5:40 ` Harald Welte
  1 sibling, 0 replies; 3+ messages in thread
From: Harald Welte @ 2010-07-07  5:40 UTC (permalink / raw)
  To: Axel Lin
  Cc: linux-kernel, Matthew Garrett, Richard Purdie,
	Márton Németh, Jiri Kosina, Dmitry Torokhov,
	platform-driver-x86

On Wed, Jul 07, 2010 at 08:21:48AM +0800, Axel Lin wrote:
> In current implementation, acpi_pcc_write_sset return 1
> if write is successful, 0 if write is failed.
> But all the callers consider acpi_pcc_write_sset return 0
> if write is successful and return negtive if write is failed.
> 
> This patch changes the implementation of acpi_pcc_write_sset to
> return 0 if write is successful, -EIO if write is failed.
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Acked-By: Harald Welte <laforge@gnumonks.org>
-- 
- Harald Welte <laforge@gnumonks.org>           http://laforge.gnumonks.org/
============================================================================
"Privacy in residential applications is a desirable marketing option."
                                                  (ETSI EN 300 175-7 Ch. A6)

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

end of thread, other threads:[~2010-07-07  6:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-07  0:21 [PATCH v2] panasonic-laptop: fix acpi_pcc_write_sset return value Axel Lin
2010-07-07  0:29 ` Dmitry Torokhov
2010-07-07  5:40 ` Harald Welte

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox