linux/drivers/hwmon/pmbus/tps546d24.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * Hardware monitoring driver for TEXAS TPS546D24 buck converter
 */

#include <linux/err.h>
#include <linux/i2c.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/pmbus.h>
#include "pmbus.h"

static struct pmbus_driver_info tps546d24_info =;

static int tps546d24_probe(struct i2c_client *client)
{}

static const struct i2c_device_id tps546d24_id[] =;
MODULE_DEVICE_TABLE(i2c, tps546d24_id);

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

/* This is the driver that will be inserted */
static struct i2c_driver tps546d24_driver =;

module_i2c_driver();

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