Patch is OK, but your mailer sends them "MIME-encrypted", which means
script (like the ones I use) cannot merge the patch.
Example from your email:
@@ -179,9 +180,9 @@
MODULE_DESCRIPTION("SiS 900 PCI Fast Ethernet driver");
MODULE_LICENSE("GPL");
=20
-MODULE_PARM(multicast_filter_limit, "i");
-MODULE_PARM(max_interrupt_work, "i");
-MODULE_PARM(debug, "i");
+module_param(multicast_filter_limit, int, 0444);
+module_param(max_interrupt_work, int, 0444);
+module_param(debug, int, 0444);
MODULE_PARM_DESC(multicast_filter_limit, "SiS 900/7016 maximum number of f=
iltered multicast addresses");
MODULE_PARM_DESC(max_interrupt_work, "SiS 900/7016 maximum events handled =
per interrupt");
MODULE_PARM_DESC(debug, "SiS 900/7016 debug level (2-4)");
|