adv7183.c (ef8c029fa793423439e67ef0416b220d3fa3321a) adv7183.c (01aea0bfd8dfa8bc868df33904461984bb10a87a)
1/*
2 * adv7183.c Analog Devices ADV7183 video decoder driver
3 *
4 * Copyright (c) 2011 Analog Devices Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

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

676 .owner = THIS_MODULE,
677 .name = "adv7183",
678 },
679 .probe = adv7183_probe,
680 .remove = __devexit_p(adv7183_remove),
681 .id_table = adv7183_id,
682};
683
1/*
2 * adv7183.c Analog Devices ADV7183 video decoder driver
3 *
4 * Copyright (c) 2011 Analog Devices Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.

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

676 .owner = THIS_MODULE,
677 .name = "adv7183",
678 },
679 .probe = adv7183_probe,
680 .remove = __devexit_p(adv7183_remove),
681 .id_table = adv7183_id,
682};
683
684static __init int adv7183_init(void)
685{
686 return i2c_add_driver(&adv7183_driver);
687}
684module_i2c_driver(adv7183_driver);
688
685
689static __exit void adv7183_exit(void)
690{
691 i2c_del_driver(&adv7183_driver);
692}
693
694module_init(adv7183_init);
695module_exit(adv7183_exit);
696
697MODULE_DESCRIPTION("Analog Devices ADV7183 video decoder driver");
698MODULE_AUTHOR("Scott Jiang <Scott.Jiang.Linux@gmail.com>");
699MODULE_LICENSE("GPL v2");
686MODULE_DESCRIPTION("Analog Devices ADV7183 video decoder driver");
687MODULE_AUTHOR("Scott Jiang <Scott.Jiang.Linux@gmail.com>");
688MODULE_LICENSE("GPL v2");