linux/drivers/mfd/mp2629.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * MP2629 parent driver for ADC and battery charger
 *
 * Copyright 2020 Monolithic Power Systems, Inc
 *
 * Author: Saravanan Sekar <[email protected]>
 */

#include <linux/i2c.h>
#include <linux/kernel.h>
#include <linux/mfd/core.h>
#include <linux/mfd/mp2629.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/slab.h>

static const struct mfd_cell mp2629_cell[] =;

static const struct regmap_config mp2629_regmap_config =;

static int mp2629_probe(struct i2c_client *client)
{}

static const struct of_device_id mp2629_of_match[] =;
MODULE_DEVICE_TABLE(of, mp2629_of_match);

static struct i2c_driver mp2629_driver =;
module_i2c_driver();

MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_LICENSE();