Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 227873
b: refs/heads/master
c: a4b5a27
h: refs/heads/master
i:
  227871: b8ad06f
v: v3
  • Loading branch information
Ike Panhc authored and Matthew Garrett committed Jan 7, 2011
1 parent 90d5f34 commit 0d954a9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f63409ae91ff94e2192dafbeb00c278ba299f80e
refs/heads/master: a4b5a2794a27da870c2e16db390778a4683f95f8
31 changes: 17 additions & 14 deletions trunk/drivers/platform/x86/ideapad-laptop.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* ideapad_acpi.c - Lenovo IdeaPad ACPI Extras
* ideapad-laptop.c - Lenovo IdeaPad ACPI Extras
*
* Copyright © 2010 Intel Corporation
* Copyright © 2010 David Woodhouse <dwmw2@infradead.org>
Expand Down Expand Up @@ -168,8 +168,10 @@ static int write_ec_cmd(acpi_handle handle, int cmd, unsigned long data)
pr_err("timeout in write_ec_cmd\n");
return -1;
}
/* the above is ACPI helpers */

/*
* camera power
*/
static ssize_t show_ideapad_cam(struct device *dev,
struct device_attribute *attr,
char *buf)
Expand Down Expand Up @@ -203,6 +205,9 @@ static ssize_t store_ideapad_cam(struct device *dev,

static DEVICE_ATTR(camera_power, 0644, show_ideapad_cam, store_ideapad_cam);

/*
* Rfkill
*/
static int ideapad_rfk_set(void *data, bool blocked)
{
int device = (unsigned long)data;
Expand Down Expand Up @@ -235,7 +240,8 @@ static void ideapad_sync_rfk_state(struct acpi_device *adevice)
rfkill_set_hw_state(priv->rfk[i], hw_blocked);
}

static int ideapad_register_rfkill(struct acpi_device *adevice, int dev)
static int __devinit ideapad_register_rfkill(struct acpi_device *adevice,
int dev)
{
struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
int ret;
Expand Down Expand Up @@ -271,7 +277,8 @@ static int ideapad_register_rfkill(struct acpi_device *adevice, int dev)
return 0;
}

static void ideapad_unregister_rfkill(struct acpi_device *adevice, int dev)
static void __devexit ideapad_unregister_rfkill(struct acpi_device *adevice,
int dev)
{
struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);

Expand Down Expand Up @@ -326,7 +333,6 @@ static void ideapad_platform_exit(void)
&ideapad_attribute_group);
platform_device_unregister(ideapad_priv->platform_device);
}
/* the above is platform device */

/*
* input device
Expand Down Expand Up @@ -386,15 +392,17 @@ static void ideapad_input_report(unsigned long scancode)
{
sparse_keymap_report_event(ideapad_priv->inputdev, scancode, 1, true);
}
/* the above is input device */

/*
* module init/exit
*/
static const struct acpi_device_id ideapad_device_ids[] = {
{ "VPC2004", 0},
{ "", 0},
};
MODULE_DEVICE_TABLE(acpi, ideapad_device_ids);

static int ideapad_acpi_add(struct acpi_device *adevice)
static int __devinit ideapad_acpi_add(struct acpi_device *adevice)
{
int ret, i, cfg;
struct ideapad_private *priv;
Expand Down Expand Up @@ -432,7 +440,7 @@ static int ideapad_acpi_add(struct acpi_device *adevice)
return ret;
}

static int ideapad_acpi_remove(struct acpi_device *adevice, int type)
static int __devexit ideapad_acpi_remove(struct acpi_device *adevice, int type)
{
struct ideapad_private *priv = dev_get_drvdata(&adevice->dev);
int i;
Expand Down Expand Up @@ -478,19 +486,14 @@ static struct acpi_driver ideapad_acpi_driver = {
.owner = THIS_MODULE,
};


static int __init ideapad_acpi_module_init(void)
{
acpi_bus_register_driver(&ideapad_acpi_driver);

return 0;
return acpi_bus_register_driver(&ideapad_acpi_driver);
}


static void __exit ideapad_acpi_module_exit(void)
{
acpi_bus_unregister_driver(&ideapad_acpi_driver);

}

MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
Expand Down

0 comments on commit 0d954a9

Please sign in to comment.