adv7183.c (d8c532c40721f7507896d202b8cae3b3642d2b0d) | adv7183.c (4c62e9764ab403d42f9b8871b1241fe7812f19d4) |
---|---|
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. --- 663 unchanged lines hidden (view full) --- 672MODULE_DEVICE_TABLE(i2c, adv7183_id); 673 674static struct i2c_driver adv7183_driver = { 675 .driver = { 676 .owner = THIS_MODULE, 677 .name = "adv7183", 678 }, 679 .probe = adv7183_probe, | 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. --- 663 unchanged lines hidden (view full) --- 672MODULE_DEVICE_TABLE(i2c, adv7183_id); 673 674static struct i2c_driver adv7183_driver = { 675 .driver = { 676 .owner = THIS_MODULE, 677 .name = "adv7183", 678 }, 679 .probe = adv7183_probe, |
680 .remove = __devexit_p(adv7183_remove), | 680 .remove = adv7183_remove, |
681 .id_table = adv7183_id, 682}; 683 684module_i2c_driver(adv7183_driver); 685 686MODULE_DESCRIPTION("Analog Devices ADV7183 video decoder driver"); 687MODULE_AUTHOR("Scott Jiang <Scott.Jiang.Linux@gmail.com>"); 688MODULE_LICENSE("GPL v2"); | 681 .id_table = adv7183_id, 682}; 683 684module_i2c_driver(adv7183_driver); 685 686MODULE_DESCRIPTION("Analog Devices ADV7183 video decoder driver"); 687MODULE_AUTHOR("Scott Jiang <Scott.Jiang.Linux@gmail.com>"); 688MODULE_LICENSE("GPL v2"); |