staging: lustre: acl: Remove lustre_posix_acl_xattr_free wrapper
[linux-2.6/btrfs-unstable.git] / drivers / pwm / pwm-lpss-platform.c
blob54433fc6d1a4e491e9e046b20558e093d7c5c4de
1 /*
2 * Intel Low Power Subsystem PWM controller driver
4 * Copyright (C) 2014, Intel Corporation
6 * Derived from the original pwm-lpss.c
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
13 #include <linux/acpi.h>
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm_runtime.h>
19 #include "pwm-lpss.h"
21 static int pwm_lpss_probe_platform(struct platform_device *pdev)
23 const struct pwm_lpss_boardinfo *info;
24 const struct acpi_device_id *id;
25 struct pwm_lpss_chip *lpwm;
26 struct resource *r;
28 id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
29 if (!id)
30 return -ENODEV;
32 info = (const struct pwm_lpss_boardinfo *)id->driver_data;
33 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
35 lpwm = pwm_lpss_probe(&pdev->dev, r, info);
36 if (IS_ERR(lpwm))
37 return PTR_ERR(lpwm);
39 platform_set_drvdata(pdev, lpwm);
41 pm_runtime_set_active(&pdev->dev);
42 pm_runtime_enable(&pdev->dev);
44 return 0;
47 static int pwm_lpss_remove_platform(struct platform_device *pdev)
49 struct pwm_lpss_chip *lpwm = platform_get_drvdata(pdev);
51 pm_runtime_disable(&pdev->dev);
52 return pwm_lpss_remove(lpwm);
55 static const struct acpi_device_id pwm_lpss_acpi_match[] = {
56 { "80860F09", (unsigned long)&pwm_lpss_byt_info },
57 { "80862288", (unsigned long)&pwm_lpss_bsw_info },
58 { "80865AC8", (unsigned long)&pwm_lpss_bxt_info },
59 { },
61 MODULE_DEVICE_TABLE(acpi, pwm_lpss_acpi_match);
63 static struct platform_driver pwm_lpss_driver_platform = {
64 .driver = {
65 .name = "pwm-lpss",
66 .acpi_match_table = pwm_lpss_acpi_match,
68 .probe = pwm_lpss_probe_platform,
69 .remove = pwm_lpss_remove_platform,
71 module_platform_driver(pwm_lpss_driver_platform);
73 MODULE_DESCRIPTION("PWM platform driver for Intel LPSS");
74 MODULE_LICENSE("GPL v2");
75 MODULE_ALIAS("platform:pwm-lpss");