Hi!

This kills few underscores from printer.c and makes drivers quiet for
in-kernel case. Please apply,
                                                                Pavel

--- clean/drivers/usb/audio.c   Fri Oct  5 21:04:50 2001
+++ linux/drivers/usb/audio.c   Thu Oct 25 13:25:40 2001
@@ -3796,7 +3796,9 @@
 static int __init usb_audio_init(void)
 {
        usb_register(&usb_audio_driver);
+#ifdef MODULE
        info(DRIVER_VERSION ":" DRIVER_DESC);
+#endif
        return 0;
 }
 
--- clean/drivers/usb/printer.c Wed Oct 10 00:15:02 2001
+++ linux/drivers/usb/printer.c Thu Oct 25 13:25:40 2001
@@ -109,8 +109,8 @@
 /* Quirks: various printer quirks are handled by this table & its flags. */
 
 struct quirk_printer_struct {
-       __u16 vendorId;
-       __u16 productId;
+       u16 vendorId;
+       u16 productId;
        unsigned int quirks;
 };
 
@@ -727,7 +727,9 @@
 {
        if (usb_register(&usblp_driver))
                return -1;
+#ifdef MODULE
        info(DRIVER_VERSION ":" DRIVER_DESC);
+#endif
        return 0;
 }
 

-- 
"I do not steal MS software. It is not worth it."
                                -- Pavel Kankovsky

_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to