linux/drivers/mfd/max77843.c

// SPDX-License-Identifier: GPL-2.0+
//
// MFD core driver for the Maxim MAX77843
//
// Copyright (C) 2015 Samsung Electronics
// Author: Jaewon Kim <[email protected]>
// Author: Beomho Seo <[email protected]>

#include <linux/err.h>
#include <linux/i2c.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/mfd/core.h>
#include <linux/mfd/max77693-common.h>
#include <linux/mfd/max77843-private.h>
#include <linux/mod_devicetable.h>
#include <linux/platform_device.h>

static const struct mfd_cell max77843_devs[] =;

static const struct regmap_config max77843_charger_regmap_config =;

static const struct regmap_config max77843_regmap_config =;

static const struct regmap_irq max77843_irqs[] =;

static const struct regmap_irq_chip max77843_irq_chip =;

/* Charger and Charger regulator use same regmap. */
static int max77843_chg_init(struct max77693_dev *max77843)
{}

static int max77843_probe(struct i2c_client *i2c)
{}

static const struct of_device_id max77843_dt_match[] =;

static const struct i2c_device_id max77843_id[] =;

static int __maybe_unused max77843_suspend(struct device *dev)
{}

static int __maybe_unused max77843_resume(struct device *dev)
{}

static SIMPLE_DEV_PM_OPS(max77843_pm, max77843_suspend, max77843_resume);

static struct i2c_driver max77843_i2c_driver =;

static int __init max77843_i2c_init(void)
{}
subsys_initcall(max77843_i2c_init);