// SPDX-License-Identifier: GPL-2.0-or-later /* * Driver for MPS MP5023 Hot-Swap Controller */ #include <linux/i2c.h> #include <linux/module.h> #include <linux/of.h> #include "pmbus.h" static struct pmbus_driver_info mp5023_info = …; static int mp5023_probe(struct i2c_client *client) { … } static const struct of_device_id __maybe_unused mp5023_of_match[] = …; MODULE_DEVICE_TABLE(of, mp5023_of_match); static struct i2c_driver mp5023_driver = …; module_i2c_driver(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …; MODULE_LICENSE(…) …; MODULE_IMPORT_NS(…);