#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
static const struct pwm_lpss_boardinfo pwm_lpss_byt_info = {
static const struct pwm_lpss_boardinfo pwm_lpss_bsw_info = {
.other_devices_aml_touches_pwm_regs = true,
static const struct pwm_lpss_boardinfo pwm_lpss_bxt_info = {
static int pwm_lpss_probe_platform(struct platform_device *pdev)
const struct pwm_lpss_boardinfo *info;
const struct acpi_device_id *id;
struct pwm_lpss_chip *lpwm;
id = acpi_match_device(pdev->dev.driver->acpi_match_table, &pdev->dev);
info = (const struct pwm_lpss_boardinfo *)id->driver_data;
r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
lpwm = pwm_lpss_probe(&pdev->dev, r, info);
platform_set_drvdata(pdev, lpwm);