rt5033_battery.c (7ae9fb1b7ecbb5d85d07857943f677fd1a559b18) rt5033_battery.c (fe20b1dcd2de47cdc983a47f4fb7a781e0b6c39c)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Fuel gauge driver for Richtek RT5033
4 *
5 * Copyright (C) 2014 Samsung Electronics, Co., Ltd.
6 * Author: Beomho Seo <beomho.seo@samsung.com>
7 */
8

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

167};
168MODULE_DEVICE_TABLE(of, rt5033_battery_of_match);
169
170static struct i2c_driver rt5033_battery_driver = {
171 .driver = {
172 .name = "rt5033-battery",
173 .of_match_table = rt5033_battery_of_match,
174 },
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Fuel gauge driver for Richtek RT5033
4 *
5 * Copyright (C) 2014 Samsung Electronics, Co., Ltd.
6 * Author: Beomho Seo <beomho.seo@samsung.com>
7 */
8

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

167};
168MODULE_DEVICE_TABLE(of, rt5033_battery_of_match);
169
170static struct i2c_driver rt5033_battery_driver = {
171 .driver = {
172 .name = "rt5033-battery",
173 .of_match_table = rt5033_battery_of_match,
174 },
175 .probe_new = rt5033_battery_probe,
175 .probe = rt5033_battery_probe,
176 .remove = rt5033_battery_remove,
177 .id_table = rt5033_battery_id,
178};
179module_i2c_driver(rt5033_battery_driver);
180
181MODULE_DESCRIPTION("Richtek RT5033 fuel gauge driver");
182MODULE_AUTHOR("Beomho Seo <beomho.seo@samsung.com>");
183MODULE_LICENSE("GPL");
176 .remove = rt5033_battery_remove,
177 .id_table = rt5033_battery_id,
178};
179module_i2c_driver(rt5033_battery_driver);
180
181MODULE_DESCRIPTION("Richtek RT5033 fuel gauge driver");
182MODULE_AUTHOR("Beomho Seo <beomho.seo@samsung.com>");
183MODULE_LICENSE("GPL");