|
@@ -55,6 +55,7 @@ MODULE_AUTHOR("Utz Bacher <utz.bacher@de.ibm.com> and Jens Osterkamp " \
|
|
|
"<Jens.Osterkamp@de.ibm.com>");
|
|
|
MODULE_DESCRIPTION("Spider Southbridge Gigabit Ethernet driver");
|
|
|
MODULE_LICENSE("GPL");
|
|
|
+MODULE_VERSION(VERSION);
|
|
|
|
|
|
static int rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_DEFAULT;
|
|
|
static int tx_descriptors = SPIDER_NET_TX_DESCRIPTORS_DEFAULT;
|
|
@@ -2252,6 +2253,8 @@ static struct pci_driver spider_net_driver = {
|
|
|
*/
|
|
|
static int __init spider_net_init(void)
|
|
|
{
|
|
|
+ printk(KERN_INFO "Spidernet version %s.\n", VERSION);
|
|
|
+
|
|
|
if (rx_descriptors < SPIDER_NET_RX_DESCRIPTORS_MIN) {
|
|
|
rx_descriptors = SPIDER_NET_RX_DESCRIPTORS_MIN;
|
|
|
pr_info("adjusting rx descriptors to %i.\n", rx_descriptors);
|