rtc-bq32k.c (cdd5b5a9761fd66d17586e4f4ba6588c70e640ea) rtc-bq32k.c (a47d377e22c4a896a87a18db33f26cc6d5cc9771)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Driver for TI BQ32000 RTC.
4 *
5 * Copyright (C) 2009 Semihalf.
6 * Copyright (C) 2014 Pavel Machek <pavel@denx.de>
7 *
8 * You can get hardware description at

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

299}
300
301static void bq32k_remove(struct i2c_client *client)
302{
303 bq32k_sysfs_unregister(&client->dev);
304}
305
306static const struct i2c_device_id bq32k_id[] = {
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Driver for TI BQ32000 RTC.
4 *
5 * Copyright (C) 2009 Semihalf.
6 * Copyright (C) 2014 Pavel Machek <pavel@denx.de>
7 *
8 * You can get hardware description at

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

299}
300
301static void bq32k_remove(struct i2c_client *client)
302{
303 bq32k_sysfs_unregister(&client->dev);
304}
305
306static const struct i2c_device_id bq32k_id[] = {
307 { "bq32000", 0 },
307 { "bq32000" },
308 { }
309};
310MODULE_DEVICE_TABLE(i2c, bq32k_id);
311
312static const __maybe_unused struct of_device_id bq32k_of_match[] = {
313 { .compatible = "ti,bq32000" },
314 { }
315};

--- 17 unchanged lines hidden ---
308 { }
309};
310MODULE_DEVICE_TABLE(i2c, bq32k_id);
311
312static const __maybe_unused struct of_device_id bq32k_of_match[] = {
313 { .compatible = "ti,bq32000" },
314 { }
315};

--- 17 unchanged lines hidden ---