linux/drivers/hwmon/pmbus/xdpe152c4.c

// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Hardware monitoring driver for Infineon Multi-phase Digital VR Controllers
 *
 * Copyright (c) 2022 Infineon Technologies. All rights reserved.
 */

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

#define XDPE152_PAGE_NUM

static struct pmbus_driver_info xdpe152_info =;

static int xdpe152_probe(struct i2c_client *client)
{}

static const struct i2c_device_id xdpe152_id[] =;

MODULE_DEVICE_TABLE(i2c, xdpe152_id);

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

static struct i2c_driver xdpe152_driver =;

module_i2c_driver();

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