public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Darren Hart <dvhart@infradead.org>
To: Azael Avalos <coproscefalo@gmail.com>
Cc: platform-driver-x86@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH resend 2/6] toshiba_acpi: Add fan entry to sysfs
Date: Mon, 9 Feb 2015 20:02:35 -0800	[thread overview]
Message-ID: <20150210040235.GA37927@fury.dvhart.com> (raw)
In-Reply-To: <1423539294-2941-3-git-send-email-coproscefalo@gmail.com>

On Mon, Feb 09, 2015 at 08:34:50PM -0700, Azael Avalos wrote:
> This patch adds a fan entry to sysfs, enabling the user to get and
> set the fan status.
> 

Hi Azael,

I was finally getting around to these when you resent them. Apologies for the
delay. Travel and still fighting a cold/flu/bug. Sigh. Anyway... on to patch
review :-)

> Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
> ---
>  drivers/platform/x86/toshiba_acpi.c | 51 ++++++++++++++++++++++++++++++++++++-
>  1 file changed, 50 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c
> index 334b65e..413af60 100644
> --- a/drivers/platform/x86/toshiba_acpi.c
> +++ b/drivers/platform/x86/toshiba_acpi.c
> @@ -1516,6 +1516,11 @@ static const struct backlight_ops toshiba_backlight_data = {
>   */
>  static ssize_t toshiba_version_show(struct device *dev,
>  				    struct device_attribute *attr, char *buf);
> +static ssize_t toshiba_fan_store(struct device *dev,
> +				 struct device_attribute *attr,
> +				 const char *buf, size_t count);
> +static ssize_t toshiba_fan_show(struct device *dev,
> +				struct device_attribute *attr, char *buf);
>  static ssize_t toshiba_kbd_bl_mode_store(struct device *dev,
>  					 struct device_attribute *attr,
>  					 const char *buf, size_t count);
> @@ -1569,6 +1574,8 @@ static ssize_t toshiba_usb_sleep_music_store(struct device *dev,
>  					     const char *buf, size_t count);
>  
>  static DEVICE_ATTR(version, S_IRUGO, toshiba_version_show, NULL);
> +static DEVICE_ATTR(fan, S_IRUGO | S_IWUSR,
> +		   toshiba_fan_show, toshiba_fan_store);
>  static DEVICE_ATTR(kbd_backlight_mode, S_IRUGO | S_IWUSR,
>  		   toshiba_kbd_bl_mode_show, toshiba_kbd_bl_mode_store);
>  static DEVICE_ATTR(kbd_type, S_IRUGO, toshiba_kbd_type_show, NULL);

At some point, before we add too much more, it would be nice to convert these
over to DEVICE_ATTR_RW and DEVICE_ATTR_RO. Any reason not to do this sooner
rather than later?

> @@ -1594,6 +1601,7 @@ static DEVICE_ATTR(usb_sleep_music, S_IRUGO | S_IWUSR,
>  
>  static struct attribute *toshiba_attributes[] = {
>  	&dev_attr_version.attr,
> +	&dev_attr_fan.attr,
>  	&dev_attr_kbd_backlight_mode.attr,
>  	&dev_attr_kbd_type.attr,
>  	&dev_attr_available_kbd_modes.attr,
> @@ -1621,6 +1629,45 @@ static ssize_t toshiba_version_show(struct device *dev,
>  	return sprintf(buf, "%s\n", TOSHIBA_ACPI_VERSION);
>  }
>  
> +static ssize_t toshiba_fan_store(struct device *dev,
> +				 struct device_attribute *attr,
> +				 const char *buf, size_t count)
> +{
> +	struct toshiba_acpi_dev *toshiba = dev_get_drvdata(dev);
> +	u32 result;
> +	int state;
> +	int ret;
> +
> +	ret = kstrtoint(buf, 0, &state);
> +	if (ret)
> +		return ret;
> +
> +	if (state != 0 && state != 1)
> +		return -EINVAL;
> +
> +	result = hci_write1(toshiba, HCI_FAN, state);
> +	if (result == TOS_FAILURE)
> +		return -EIO;
> +	else if (result == TOS_NOT_SUPPORTED)
> +		return -ENODEV;
> +

A quick scan of hci_write1 makes me wonder if there are more than two possible
failures. Should we also have an "else if (result)" or "else if (result !=
WHATEVER_SUCCESS_IS)" before we assume success and return count?

-- 
Darren Hart
Intel Open Source Technology Center

  reply	other threads:[~2015-02-10  4:02 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-10  3:34 [PATCH resend 0/6] toshiba_acpi: Add new features plus some procfs ports Azael Avalos
2015-02-10  3:34 ` [PATCH resend 1/6] toshiba_acpi: Add version entry to sysfs Azael Avalos
2015-02-10  3:34 ` [PATCH resend 2/6] toshiba_acpi: Add fan " Azael Avalos
2015-02-10  4:02   ` Darren Hart [this message]
2015-02-10  4:25     ` Azael Avalos
2015-02-10  3:34 ` [PATCH resend 3/6] toshiba_acpi: Add support for Keyboard functions mode Azael Avalos
2015-02-10  4:08   ` Darren Hart
2015-02-10  4:38     ` Azael Avalos
2015-02-10  3:34 ` [PATCH resend 4/6] toshiba_acpi: Add support for Panel Power ON Azael Avalos
2015-02-10  3:34 ` [PATCH resend 5/6] toshiba_acpi: Add support to enable/disable USB 3 Azael Avalos
2015-02-10  4:11   ` Darren Hart
2015-02-10  4:46     ` Azael Avalos
2015-02-10  4:55       ` Darren Hart
2015-02-10  5:02         ` Azael Avalos
2015-02-10 19:20           ` Darren Hart
2015-02-10  5:24         ` Matthew Garrett
2015-02-10 19:20           ` Darren Hart
2015-02-10  3:34 ` [PATCH resend 6/6] toshiba_acpi: Bump version number to 0.21 Azael Avalos

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=20150210040235.GA37927@fury.dvhart.com \
    --to=dvhart@infradead.org \
    --cc=coproscefalo@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=platform-driver-x86@vger.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