#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/acpi.h>
#include <linux/thermal.h>
#include "int340x_thermal_zone.h"
#define INT3402_PERF_CHANGED_EVENT …
#define INT3402_THERMAL_EVENT …
struct int3402_thermal_data { … };
static void int3402_notify(acpi_handle handle, u32 event, void *data)
{ … }
static int int3402_thermal_probe(struct platform_device *pdev)
{ … }
static void int3402_thermal_remove(struct platform_device *pdev)
{ … }
static const struct acpi_device_id int3402_thermal_match[] = …;
MODULE_DEVICE_TABLE(acpi, int3402_thermal_match);
static struct platform_driver int3402_thermal_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;