[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1410563212-31565-12-git-send-email-fransklaver@gmail.com>
Date: Sat, 13 Sep 2014 01:06:50 +0200
From: Frans Klaver <fransklaver@...il.com>
To: Darren Hart <dvhart@...radead.org>
Cc: Frans Klaver <fransklaver@...il.com>,
Corentin Chary <corentin.chary@...il.com>,
Rafael Wysocki <rafael.j.wysocki@...el.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
acpi4asus-user@...ts.sourceforge.net,
platform-driver-x86@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH 11/13] eeepc-laptop: propagate errors from get_cpufv
In show_available_cpufv, show_cpufv, and store_cpufv, errors from
get_cpufv are mapped to -ENODEV. To paint a clear picture to callers,
propagate the errors instead.
Signed-off-by: Frans Klaver <fransklaver@...il.com>
---
drivers/platform/x86/eeepc-laptop.c | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/drivers/platform/x86/eeepc-laptop.c b/drivers/platform/x86/eeepc-laptop.c
index 828db56..732b012 100644
--- a/drivers/platform/x86/eeepc-laptop.c
+++ b/drivers/platform/x86/eeepc-laptop.c
@@ -351,8 +351,9 @@ static ssize_t show_available_cpufv(struct device *dev,
int i;
ssize_t len = 0;
- if (get_cpufv(eeepc, &c))
- return -ENODEV;
+ i = get_cpufv(eeepc, &c);
+ if (i)
+ return i;
for (i = 0; i < c.num; i++)
len += sprintf(buf + len, "%d ", i);
len += sprintf(buf + len, "\n");
@@ -365,9 +366,11 @@ static ssize_t show_cpufv(struct device *dev,
{
struct eeepc_laptop *eeepc = dev_get_drvdata(dev);
struct eeepc_cpufv c;
+ int rv;
- if (get_cpufv(eeepc, &c))
- return -ENODEV;
+ rv = get_cpufv(eeepc, &c);
+ if (rv)
+ return rv;
return sprintf(buf, "%#x\n", (c.num << 8) | c.cur);
}
@@ -381,8 +384,9 @@ static ssize_t store_cpufv(struct device *dev,
if (eeepc->cpufv_disabled)
return -EPERM;
- if (get_cpufv(eeepc, &c))
- return -ENODEV;
+ rv = get_cpufv(eeepc, &c);
+ if (rv)
+ return rv;
rv = parse_arg(buf, &value);
if (rv < 0)
return rv;
--
2.1.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists