Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 227858
b: refs/heads/master
c: 27c136c
h: refs/heads/master
v: v3
  • Loading branch information
Corentin Chary authored and Matthew Garrett committed Jan 7, 2011
1 parent 7f5ccea commit 614176f
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 57 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: 72135d21b587debcbcc57e0dbcc8bcfa4dacb661
refs/heads/master: 27c136c8738f6bec10c26aaf0a486f19edef7bf7
135 changes: 79 additions & 56 deletions trunk/drivers/platform/x86/eeepc-wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,10 @@ struct bios_args {
struct eeepc_wmi {
struct input_dev *inputdev;
struct backlight_device *backlight_device;
struct platform_device *platform_device;
};

/* Only used in eeepc_wmi_init() and eeepc_wmi_exit() */
static struct platform_device *platform_device;

static int eeepc_wmi_input_init(struct eeepc_wmi *eeepc)
Expand All @@ -101,7 +103,7 @@ static int eeepc_wmi_input_init(struct eeepc_wmi *eeepc)
eeepc->inputdev->name = "Eee PC WMI hotkeys";
eeepc->inputdev->phys = EEEPC_WMI_FILE "/input0";
eeepc->inputdev->id.bustype = BUS_HOST;
eeepc->inputdev->dev.parent = &platform_device->dev;
eeepc->inputdev->dev.parent = &eeepc->platform_device->dev;

err = sparse_keymap_setup(eeepc->inputdev, eeepc_wmi_keymap, NULL);
if (err)
Expand Down Expand Up @@ -234,7 +236,7 @@ static int eeepc_wmi_backlight_init(struct eeepc_wmi *eeepc)
memset(&props, 0, sizeof(struct backlight_properties));
props.max_brightness = 15;
bd = backlight_device_register(EEEPC_WMI_FILE,
&platform_device->dev, eeepc,
&eeepc->platform_device->dev, eeepc,
&eeepc_wmi_bl_ops, &props);
if (IS_ERR(bd)) {
pr_err("Could not register backlight device\n");
Expand Down Expand Up @@ -337,57 +339,109 @@ static int eeepc_wmi_sysfs_init(struct platform_device *device)
return 0;

error_sysfs:
eeepc_wmi_sysfs_exit(platform_device);
eeepc_wmi_sysfs_exit(device);
return retval;
}

static int __devinit eeepc_wmi_platform_probe(struct platform_device *device)
/*
* Platform device
*/
static int __init eeepc_wmi_platform_init(struct eeepc_wmi *eeepc)
{
struct eeepc_wmi *eeepc;
int err;

eeepc->platform_device = platform_device_alloc(EEEPC_WMI_FILE, -1);
if (!eeepc->platform_device)
return -ENOMEM;
platform_set_drvdata(eeepc->platform_device, eeepc);

err = platform_device_add(eeepc->platform_device);
if (err)
goto fail_platform_device;

err = eeepc_wmi_sysfs_init(eeepc->platform_device);
if (err)
goto fail_sysfs;
return 0;

fail_sysfs:
platform_device_del(eeepc->platform_device);
fail_platform_device:
platform_device_put(eeepc->platform_device);
return err;
}

static void eeepc_wmi_platform_exit(struct eeepc_wmi *eeepc)
{
eeepc_wmi_sysfs_exit(eeepc->platform_device);
platform_device_unregister(eeepc->platform_device);
}

/*
* WMI Driver
*/
static struct platform_device * __init eeepc_wmi_add(void)
{
struct eeepc_wmi *eeepc;
acpi_status status;
int err;

eeepc = platform_get_drvdata(device);
eeepc = kzalloc(sizeof(struct eeepc_wmi), GFP_KERNEL);
if (!eeepc)
return ERR_PTR(-ENOMEM);

/*
* Register the platform device first. It is used as a parent for the
* sub-devices below.
*/
err = eeepc_wmi_platform_init(eeepc);
if (err)
goto fail_platform;

err = eeepc_wmi_input_init(eeepc);
if (err)
goto error_input;
goto fail_input;

if (!acpi_video_backlight_support()) {
err = eeepc_wmi_backlight_init(eeepc);
if (err)
goto error_backlight;
goto fail_backlight;
} else
pr_info("Backlight controlled by ACPI video driver\n");

status = wmi_install_notify_handler(EEEPC_WMI_EVENT_GUID,
eeepc_wmi_notify, eeepc);
eeepc_wmi_notify, eeepc);
if (ACPI_FAILURE(status)) {
pr_err("Unable to register notify handler - %d\n",
status);
err = -ENODEV;
goto error_wmi;
goto fail_wmi_handler;
}

return 0;
return eeepc->platform_device;

error_wmi:
fail_wmi_handler:
eeepc_wmi_backlight_exit(eeepc);
error_backlight:
fail_backlight:
eeepc_wmi_input_exit(eeepc);
error_input:
return err;
fail_input:
eeepc_wmi_platform_exit(eeepc);
fail_platform:
kfree(eeepc);
return ERR_PTR(err);
}

static int __devexit eeepc_wmi_platform_remove(struct platform_device *device)
static int eeepc_wmi_remove(struct platform_device *device)
{
struct eeepc_wmi *eeepc;

eeepc = platform_get_drvdata(device);
wmi_remove_notify_handler(EEEPC_WMI_EVENT_GUID);
eeepc_wmi_backlight_exit(eeepc);
eeepc_wmi_input_exit(eeepc);
eeepc_wmi_platform_exit(eeepc);

kfree(eeepc);
return 0;
}

Expand All @@ -396,13 +450,10 @@ static struct platform_driver platform_driver = {
.name = EEEPC_WMI_FILE,
.owner = THIS_MODULE,
},
.probe = eeepc_wmi_platform_probe,
.remove = __devexit_p(eeepc_wmi_platform_remove),
};

static int __init eeepc_wmi_init(void)
{
struct eeepc_wmi *eeepc;
int err;

if (!wmi_has_guid(EEEPC_WMI_EVENT_GUID) ||
Expand All @@ -411,58 +462,30 @@ static int __init eeepc_wmi_init(void)
return -ENODEV;
}

eeepc = kzalloc(sizeof(struct eeepc_wmi), GFP_KERNEL);
if (!eeepc)
return -ENOMEM;

platform_device = platform_device_alloc(EEEPC_WMI_FILE, -1);
if (!platform_device) {
pr_warning("Unable to allocate platform device\n");
err = -ENOMEM;
goto fail_platform;
platform_device = eeepc_wmi_add();
if (IS_ERR(platform_device)) {
err = PTR_ERR(platform_device);
goto fail_eeepc_wmi;
}

err = platform_device_add(platform_device);
if (err) {
pr_warning("Unable to add platform device\n");
goto put_dev;
}

platform_set_drvdata(platform_device, eeepc);

err = platform_driver_register(&platform_driver);
if (err) {
pr_warning("Unable to register platform driver\n");
goto del_dev;
goto fail_platform_driver;
}

err = eeepc_wmi_sysfs_init(platform_device);
if (err)
goto del_sysfs;

return 0;

del_sysfs:
eeepc_wmi_sysfs_exit(platform_device);
del_dev:
platform_device_del(platform_device);
put_dev:
platform_device_put(platform_device);
fail_platform:
kfree(eeepc);

fail_platform_driver:
eeepc_wmi_remove(platform_device);
fail_eeepc_wmi:
return err;
}

static void __exit eeepc_wmi_exit(void)
{
struct eeepc_wmi *eeepc;

eeepc_wmi_sysfs_exit(platform_device);
eeepc = platform_get_drvdata(platform_device);
eeepc_wmi_remove(platform_device);
platform_driver_unregister(&platform_driver);
platform_device_unregister(platform_device);
kfree(eeepc);
}

module_init(eeepc_wmi_init);
Expand Down

0 comments on commit 614176f

Please sign in to comment.