tc3589x.c (2612e3bbc0386368a850140a6c9b990cd496a5ec) tc3589x.c (8e922937a78d9683fe8372d8e6b02f145eb451e4)
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) ST-Ericsson SA 2010
4 *
5 * Author: Hanumath Prasad <hanumath.prasad@stericsson.com> for ST-Ericsson
6 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
7 */
8

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

478 { }
479};
480MODULE_DEVICE_TABLE(i2c, tc3589x_id);
481
482static struct i2c_driver tc3589x_driver = {
483 .driver = {
484 .name = "tc3589x",
485 .pm = pm_sleep_ptr(&tc3589x_dev_pm_ops),
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) ST-Ericsson SA 2010
4 *
5 * Author: Hanumath Prasad <hanumath.prasad@stericsson.com> for ST-Ericsson
6 * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson
7 */
8

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

478 { }
479};
480MODULE_DEVICE_TABLE(i2c, tc3589x_id);
481
482static struct i2c_driver tc3589x_driver = {
483 .driver = {
484 .name = "tc3589x",
485 .pm = pm_sleep_ptr(&tc3589x_dev_pm_ops),
486 .of_match_table = of_match_ptr(tc3589x_match),
486 .of_match_table = tc3589x_match,
487 },
488 .probe = tc3589x_probe,
489 .remove = tc3589x_remove,
490 .id_table = tc3589x_id,
491};
492
493static int __init tc3589x_init(void)
494{

--- 12 unchanged lines hidden ---
487 },
488 .probe = tc3589x_probe,
489 .remove = tc3589x_remove,
490 .id_table = tc3589x_id,
491};
492
493static int __init tc3589x_init(void)
494{

--- 12 unchanged lines hidden ---