rtc-rx8010.c (cdd5b5a9761fd66d17586e4f4ba6588c70e640ea) rtc-rx8010.c (a47d377e22c4a896a87a18db33f26cc6d5cc9771)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Driver for the Epson RTC module RX-8010 SJ
4 *
5 * Copyright(C) Timesys Corporation 2015
6 * Copyright(C) General Electric Company 2015
7 */
8

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

45#define RX8010_CTRL_AIE BIT(3)
46#define RX8010_CTRL_UIE BIT(5)
47#define RX8010_CTRL_STOP BIT(6)
48#define RX8010_CTRL_TEST BIT(7)
49
50#define RX8010_ALARM_AE BIT(7)
51
52static const struct i2c_device_id rx8010_id[] = {
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Driver for the Epson RTC module RX-8010 SJ
4 *
5 * Copyright(C) Timesys Corporation 2015
6 * Copyright(C) General Electric Company 2015
7 */
8

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

45#define RX8010_CTRL_AIE BIT(3)
46#define RX8010_CTRL_UIE BIT(5)
47#define RX8010_CTRL_STOP BIT(6)
48#define RX8010_CTRL_TEST BIT(7)
49
50#define RX8010_ALARM_AE BIT(7)
51
52static const struct i2c_device_id rx8010_id[] = {
53 { "rx8010", 0 },
53 { "rx8010" },
54 { }
55};
56MODULE_DEVICE_TABLE(i2c, rx8010_id);
57
58static const __maybe_unused struct of_device_id rx8010_of_match[] = {
59 { .compatible = "epson,rx8010" },
60 { }
61};

--- 374 unchanged lines hidden ---
54 { }
55};
56MODULE_DEVICE_TABLE(i2c, rx8010_id);
57
58static const __maybe_unused struct of_device_id rx8010_of_match[] = {
59 { .compatible = "epson,rx8010" },
60 { }
61};

--- 374 unchanged lines hidden ---