Files
kernel_common_drivers/drivers/rtc/main.c
T
chengbing.wu 29655631ae pmic: a1 k5.15 pmic and sub driver porting [1/1]
PD#SWPL-112358

Problem:
ad403 is missing pmic6b driver in kernel5.15.

Solution:
base Yu Tu 76117 and 78726;
base Jian yi 189702 and 192916,216774;
and yao jie 216898;

Verify:
A113L-AD401 #1 +Battery.
all driver use ko;

Change-Id: I911ca92dbe6f8c0f623e32fd14bdcf23a6318861
Signed-off-by: chengbing wu <chengbing.wu@amlogic.com>
2023-04-16 22:32:09 -07:00

32 lines
618 B
C

// 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 rtc_main_init(void)
{
pr_debug("### %s() start\n", __func__);
call_sub_init(vrtc_init);
call_sub_init(rtc_init);
call_sub_init(meson_pmic6b_rtc_init);
pr_debug("### %s() end\n", __func__);
return 0;
}
static void __exit rtc_main_exit(void)
{
vrtc_exit();
rtc_exit();
meson_pmic6b_rtc_exit();
}
module_init(rtc_main_init);
module_exit(rtc_main_exit);
MODULE_LICENSE("GPL v2");