#include <linux/i2c.h>
#include <linux/interrupt.h>
#include <linux/mfd/core.h>
#include <linux/module.h>
#include <linux/mfd/tps65086.h>
static const struct mfd_cell tps65086_cells[] = …;
static const struct regmap_range tps65086_yes_ranges[] = …;
static const struct regmap_access_table tps65086_volatile_table = …;
static const struct regmap_config tps65086_regmap_config = …;
static const struct regmap_irq tps65086_irqs[] = …;
static struct regmap_irq_chip tps65086_irq_chip = …;
static const struct of_device_id tps65086_of_match_table[] = …;
MODULE_DEVICE_TABLE(of, tps65086_of_match_table);
static int tps65086_probe(struct i2c_client *client)
{ … }
static void tps65086_remove(struct i2c_client *client)
{ … }
static const struct i2c_device_id tps65086_id_table[] = …;
MODULE_DEVICE_TABLE(i2c, tps65086_id_table);
static struct i2c_driver tps65086_driver = …;
module_i2c_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;