[PATCH 4/8] ideapad: use return value of _CFG to tell if device exist or not

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Ike Panhc
Date: Wednesday, August 18, 2010 - 1:38 am

There are several bits of the return value of _CFG shows if RF/Camera devices
exist or not.

Signed-off-by: Ike Panhc <ike.pan@canonical.com>
---
 drivers/platform/x86/ideapad_acpi.c |   44 ++++++++---------------------------
 1 files changed, 10 insertions(+), 34 deletions(-)

diff --git a/drivers/platform/x86/ideapad_acpi.c b/drivers/platform/x86/ideapad_acpi.c
index c1eec70..673b44d 100644
--- a/drivers/platform/x86/ideapad_acpi.c
+++ b/drivers/platform/x86/ideapad_acpi.c
@@ -40,13 +40,14 @@ struct ideapad_private {
 
 static struct {
 	char *name;
+	int cfgbit;
 	int type;
 } ideapad_rfk_data[] = {
-	/* camera has no rfkill */
-	{ "ideapad_wlan",	RFKILL_TYPE_WLAN },
-	{ "ideapad_bluetooth",	RFKILL_TYPE_BLUETOOTH },
-	{ "ideapad_3g",		RFKILL_TYPE_WWAN },
-	{ "ideapad_killsw",	RFKILL_TYPE_WLAN }
+	{ "ideapad_camera",	19, NUM_RFKILL_TYPES },
+	{ "ideapad_wlan",	18, RFKILL_TYPE_WLAN },
+	{ "ideapad_bluetooth",	16, RFKILL_TYPE_BLUETOOTH },
+	{ "ideapad_3g",		17, RFKILL_TYPE_WWAN },
+	{ "ideapad_killsw",	0, RFKILL_TYPE_WLAN }
 };
 
 /*
@@ -160,32 +161,6 @@ static int write_ec_cmd(acpi_handle handle, int cmd, unsigned long data)
 }
 /* the above is ACPI helpers */
 
-static int ideapad_dev_exists(int device)
-{
-	acpi_status status;
-	union acpi_object in_param;
-	struct acpi_object_list input = { 1, &in_param };
-	struct acpi_buffer output;
-	union acpi_object out_obj;
-
-	output.length = sizeof(out_obj);
-	output.pointer = &out_obj;
-
-	in_param.type = ACPI_TYPE_INTEGER;
-	in_param.integer.value = device + 1;
-
-	status = acpi_evaluate_object(NULL, "\\_SB_.DECN", &input, &output);
-	if (ACPI_FAILURE(status)) {
-		printk(KERN_WARNING "IdeaPAD \\_SB_.DECN method failed %d. Is this an IdeaPAD?\n", status);
-		return -ENODEV;
-	}
-	if (out_obj.type != ACPI_TYPE_INTEGER) {
-		printk(KERN_WARNING "IdeaPAD \\_SB_.DECN method returned unexpected type\n");
-		return -ENODEV;
-	}
-	return out_obj.integer.value;
-}
-
 static int ideapad_dev_get_state(int device)
 {
 	acpi_status status;
@@ -341,9 +316,10 @@ static int ideapad_acpi_add(struct acpi_device *adevice)
 		return -ENODEV;
 
 	for (i = IDEAPAD_DEV_CAMERA; i < IDEAPAD_DEV_KILLSW; i++) {
-		devs_present[i] = ideapad_dev_exists(i);
-		if (devs_present[i] < 0)
-			return devs_present[i];
+		if (test_bit(ideapad_rfk_data[i].cfgbit, (unsigned long *)&cfg))
+			devs_present[i] = 1;
+		else
+			devs_present[i] = 0;
 	}
 
 	/* The hardware switch is always present */
-- 
1.7.0.4

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/8] ideapad: add ACPI helpers, Ike Panhc, (Wed Aug 18, 1:36 am)
[PATCH 4/8] ideapad: use return value of _CFG to tell if d ..., Ike Panhc, (Wed Aug 18, 1:38 am)
[PATCH 6/8] ideapad: rewrite the hw rfkill notify, Ike Panhc, (Wed Aug 18, 1:38 am)
[PATCH 7/8] ideapad: rewrite the sw rfkill set, Ike Panhc, (Wed Aug 18, 1:38 am)
Re: [PATCH 5/8] ideapad: use EC command to control camera, Oliver Neukum, (Wed Aug 18, 1:42 am)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Wed Aug 18, 8:51 am)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Thu Aug 19, 12:31 pm)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Fri Aug 20, 2:08 am)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Mon Aug 30, 11:19 am)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Wed Sep 1, 12:56 pm)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Thu Sep 9, 11:17 am)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Fri Sep 10, 12:11 am)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Wed Sep 15, 4:48 am)
Re: [PATCH 0/8] [Resend] ideapad: using EC command to cont ..., Mario 'BitKoenig' Holbe, (Tue Sep 21, 6:47 am)