rtc-isl12026.c (4f2c0a4acffbec01079c28f839422e64ddeff004) rtc-isl12026.c (31b0cecb4042d2676fd48f09379a19bc8b16eadd)
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * An I2C driver for the Intersil ISL 12026
4 *
5 * Copyright (c) 2018 Cavium, Inc.
6 */
7#include <linux/bcd.h>
8#include <linux/delay.h>

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

485};
486MODULE_DEVICE_TABLE(of, isl12026_dt_match);
487
488static struct i2c_driver isl12026_driver = {
489 .driver = {
490 .name = "rtc-isl12026",
491 .of_match_table = isl12026_dt_match,
492 },
1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * An I2C driver for the Intersil ISL 12026
4 *
5 * Copyright (c) 2018 Cavium, Inc.
6 */
7#include <linux/bcd.h>
8#include <linux/delay.h>

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

485};
486MODULE_DEVICE_TABLE(of, isl12026_dt_match);
487
488static struct i2c_driver isl12026_driver = {
489 .driver = {
490 .name = "rtc-isl12026",
491 .of_match_table = isl12026_dt_match,
492 },
493 .probe_new = isl12026_probe_new,
493 .probe = isl12026_probe_new,
494 .remove = isl12026_remove,
495};
496
497module_i2c_driver(isl12026_driver);
498
499MODULE_DESCRIPTION("ISL 12026 RTC driver");
500MODULE_LICENSE("GPL");
494 .remove = isl12026_remove,
495};
496
497module_i2c_driver(isl12026_driver);
498
499MODULE_DESCRIPTION("ISL 12026 RTC driver");
500MODULE_LICENSE("GPL");