blob: bb6c1fae212e70032db5055676130d6dffce6df5 [file] [log] [blame]
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
//#define DEBUG
#include <linux/module.h>
#include <linux/amlogic/module_merge.h>
#include "main.h"
static int __init mfd_main_init(void)
{
pr_debug("### %s() start\n", __func__);
call_sub_init(meson_pmic6b_i2c_init);
pr_debug("### %s() end\n", __func__);
return 0;
}
static void __exit mfd_main_exit(void)
{
meson_pmic6b_i2c_exit();
}
module_init(mfd_main_init);
module_exit(mfd_main_exit);
MODULE_LICENSE("GPL v2");