#include <linux/kernel.h>
#include <linux/clk.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/platform_device.h>
#include <linux/reset.h>
#include <media/rc-core.h>
#include <linux/pinctrl/consumer.h>
#include <linux/pm_wakeirq.h>
struct st_rc_device { … };
#define IRB_SAMPLE_RATE_COMM …
#define IRB_CLOCK_SEL …
#define IRB_CLOCK_SEL_STATUS …
#define IRB_RX_ON …
#define IRB_RX_SYS …
#define IRB_RX_INT_EN …
#define IRB_RX_INT_STATUS …
#define IRB_RX_EN …
#define IRB_MAX_SYM_PERIOD …
#define IRB_RX_INT_CLEAR …
#define IRB_RX_STATUS …
#define IRB_RX_NOISE_SUPPR …
#define IRB_RX_POLARITY_INV …
#define IRB_RX_INTS …
#define IRB_RX_OVERRUN_INT …
#define MAX_SYMB_TIME …
#define IRB_SAMPLE_FREQ …
#define IRB_FIFO_NOT_EMPTY …
#define IRB_OVERFLOW …
#define IRB_TIMEOUT …
#define IR_ST_NAME …
static void st_rc_send_lirc_timeout(struct rc_dev *rdev)
{ … }
static irqreturn_t st_rc_rx_interrupt(int irq, void *data)
{ … }
static int st_rc_hardware_init(struct st_rc_device *dev)
{ … }
static void st_rc_remove(struct platform_device *pdev)
{ … }
static int st_rc_open(struct rc_dev *rdev)
{ … }
static void st_rc_close(struct rc_dev *rdev)
{ … }
static int st_rc_probe(struct platform_device *pdev)
{ … }
#ifdef CONFIG_PM_SLEEP
static int st_rc_suspend(struct device *dev)
{ … }
static int st_rc_resume(struct device *dev)
{ … }
#endif
static SIMPLE_DEV_PM_OPS(st_rc_pm_ops, st_rc_suspend, st_rc_resume);
#ifdef CONFIG_OF
static const struct of_device_id st_rc_match[] = …;
MODULE_DEVICE_TABLE(of, st_rc_match);
#endif
static struct platform_driver st_rc_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;