rt5033.c (75bf465f0bc33e9b776a46d6a1b9b990f5fb7c37) rt5033.c (a232bcd20108e337ba9a102c935cf3e8e96f348e)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * MFD core driver for the Richtek RT5033.
4 *
5 * RT5033 comprises multiple sub-devices switcing charger, fuel gauge,
6 * flash LED, current source, LDO and BUCK regulators.
7 *
8 * Copyright (C) 2014 Samsung Electronics, Co., Ltd.

--- 108 unchanged lines hidden (view full) ---

117 { .compatible = "richtek,rt5033", },
118 { }
119};
120MODULE_DEVICE_TABLE(of, rt5033_dt_match);
121
122static struct i2c_driver rt5033_driver = {
123 .driver = {
124 .name = "rt5033",
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * MFD core driver for the Richtek RT5033.
4 *
5 * RT5033 comprises multiple sub-devices switcing charger, fuel gauge,
6 * flash LED, current source, LDO and BUCK regulators.
7 *
8 * Copyright (C) 2014 Samsung Electronics, Co., Ltd.

--- 108 unchanged lines hidden (view full) ---

117 { .compatible = "richtek,rt5033", },
118 { }
119};
120MODULE_DEVICE_TABLE(of, rt5033_dt_match);
121
122static struct i2c_driver rt5033_driver = {
123 .driver = {
124 .name = "rt5033",
125 .of_match_table = of_match_ptr(rt5033_dt_match),
125 .of_match_table = rt5033_dt_match,
126 },
127 .probe = rt5033_i2c_probe,
128 .id_table = rt5033_i2c_id,
129};
130module_i2c_driver(rt5033_driver);
131
132MODULE_DESCRIPTION("Richtek RT5033 multi-function core driver");
133MODULE_AUTHOR("Beomho Seo <beomho.seo@samsung.com>");
134MODULE_LICENSE("GPL");
126 },
127 .probe = rt5033_i2c_probe,
128 .id_table = rt5033_i2c_id,
129};
130module_i2c_driver(rt5033_driver);
131
132MODULE_DESCRIPTION("Richtek RT5033 multi-function core driver");
133MODULE_AUTHOR("Beomho Seo <beomho.seo@samsung.com>");
134MODULE_LICENSE("GPL");