Staging: comedi: Add MODULE_LICENSE and similar to NI modules
As mentioned by W. Trevor King on the devel@linuxdriverproject.org list on "Thu, 27 Jan 2011 18:52:15 -0500", "Message-ID: <20110127235214.GA5107@thialfi.dhcp.drexel.edu>", the ni_pcimio module is missing module metadata, including a license. This patch adds module metadata to all the NI comedi driver modules. It also removes a duplicate MODULE_LICENSE("GPL") line from the "mite" module. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Cc: W. Trevor King <wking@drexel.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
6a3be6e6e7
commit
3c323c01b6
|
@ -61,8 +61,6 @@
|
|||
#define PCI_DAQ_SIZE 4096
|
||||
#define PCI_DAQ_SIZE_660X 8192
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
|
||||
struct mite_struct *mite_devices;
|
||||
EXPORT_SYMBOL(mite_devices);
|
||||
|
||||
|
|
|
@ -527,3 +527,7 @@ static void __exit driver_ni6527_cleanup_module(void)
|
|||
|
||||
module_init(driver_ni6527_init_module);
|
||||
module_exit(driver_ni6527_cleanup_module);
|
||||
|
||||
MODULE_AUTHOR("Comedi http://www.comedi.org");
|
||||
MODULE_DESCRIPTION("Comedi low-level driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -871,3 +871,7 @@ static void __exit driver_ni_65xx_cleanup_module(void)
|
|||
|
||||
module_init(driver_ni_65xx_init_module);
|
||||
module_exit(driver_ni_65xx_cleanup_module);
|
||||
|
||||
MODULE_AUTHOR("Comedi http://www.comedi.org");
|
||||
MODULE_DESCRIPTION("Comedi low-level driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -1421,3 +1421,7 @@ static int ni_660x_dio_insn_config(struct comedi_device *dev,
|
|||
};
|
||||
return 0;
|
||||
}
|
||||
|
||||
MODULE_AUTHOR("Comedi http://www.comedi.org");
|
||||
MODULE_DESCRIPTION("Comedi low-level driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -384,3 +384,7 @@ static int ni_670x_find_device(struct comedi_device *dev, int bus, int slot)
|
|||
mite_list_devices();
|
||||
return -EIO;
|
||||
}
|
||||
|
||||
MODULE_AUTHOR("Comedi http://www.comedi.org");
|
||||
MODULE_DESCRIPTION("Comedi low-level driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -1354,3 +1354,7 @@ static void __exit driver_pcidio_cleanup_module(void)
|
|||
|
||||
module_init(driver_pcidio_init_module);
|
||||
module_exit(driver_pcidio_cleanup_module);
|
||||
|
||||
MODULE_AUTHOR("Comedi http://www.comedi.org");
|
||||
MODULE_DESCRIPTION("Comedi low-level driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
|
@ -1853,3 +1853,7 @@ static int pcimio_dio_change(struct comedi_device *dev,
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
MODULE_AUTHOR("Comedi http://www.comedi.org");
|
||||
MODULE_DESCRIPTION("Comedi low-level driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
|
Loading…
Reference in New Issue