ChangeSet 1.2231.1.239, 2005/03/28 20:22:46-08:00, [EMAIL PROTECTED]

        [PATCH] dvb: ttusb_dec: cleanup
        
        Cleanup patch from Peter Beutner:
        
        o unregister the input device on disconnect
          and move cleanup stuff of the RC to own function
        o keymap should be static not const
        o set up keymap correctly and completly for input device
          plus a more cosmetic one:
        o usb endpoints are only 4bit numbers[0...15], the 8th bit
          only specifies the direction and is set by the snd/rcvxxxpipe() macro
        
        Signed-off-by: Johannes Stezenbach <[EMAIL PROTECTED]>
        Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
        Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>



 ttusb_dec.c |   49 +++++++++++++++++++++++++++++--------------------
 1 files changed, 29 insertions(+), 20 deletions(-)


diff -Nru a/drivers/media/dvb/ttusb-dec/ttusb_dec.c 
b/drivers/media/dvb/ttusb-dec/ttusb_dec.c
--- a/drivers/media/dvb/ttusb-dec/ttusb_dec.c   2005-03-28 22:01:32 -08:00
+++ b/drivers/media/dvb/ttusb-dec/ttusb_dec.c   2005-03-28 22:01:32 -08:00
@@ -58,10 +58,10 @@
 #define DRIVER_NAME            "TechnoTrend/Hauppauge DEC USB"
 
 #define COMMAND_PIPE           0x03
-#define RESULT_PIPE            0x84
-#define IN_PIPE                        0x88
+#define RESULT_PIPE            0x04
+#define IN_PIPE                        0x08
 #define OUT_PIPE               0x07
-#define IRQ_PIPE               0x8A
+#define IRQ_PIPE               0x0A
 
 #define COMMAND_PACKET_SIZE    0x3c
 #define ARM_PACKET_SIZE                0x1000
@@ -170,7 +170,7 @@
        struct list_head        filter_info_list;
 };
 
-const uint16_t  rc_keys[] = {
+static u16 rc_keys[] = {
        KEY_POWER,
        KEY_MUTE,
        KEY_1,
@@ -1191,8 +1191,9 @@
 
        dec->rc_input_dev.name = "ttusb_dec remote control";
        dec->rc_input_dev.evbit[0] = BIT(EV_KEY);
-       dec->rc_input_dev.keycodesize = sizeof(unsigned char);
-       dec->rc_input_dev.keycodemax = KEY_MAX;
+       dec->rc_input_dev.keycodesize = sizeof(u16);
+       dec->rc_input_dev.keycodemax = 0x1a;
+       dec->rc_input_dev.keycode = rc_keys;
 
         for (i = 0; i < sizeof(rc_keys)/sizeof(rc_keys[0]); i++)
                 set_bit(rc_keys[i], dec->rc_input_dev.keybit);
@@ -1498,6 +1499,26 @@
        dvb_unregister_adapter(dec->adapter);
 }
 
+static void ttusb_dec_exit_rc(struct ttusb_dec *dec)
+{
+
+       dprintk("%s\n", __FUNCTION__);
+       /* we have to check whether the irq URB is already submitted.
+         * As the irq is submitted after the interface is changed,
+         * this is the best method i figured out.
+         * Any others?*/
+       if(dec->interface == TTUSB_DEC_INTERFACE_IN)
+               usb_kill_urb(dec->irq_urb);
+
+       usb_free_urb(dec->irq_urb);
+
+       usb_buffer_free(dec->udev,IRQ_PACKET_SIZE,
+                          dec->irq_buffer, dec->irq_dma_handle);
+
+       input_unregister_device(&dec->rc_input_dev);
+}
+
+
 static void ttusb_dec_exit_usb(struct ttusb_dec *dec)
 {
        int i;
@@ -1510,20 +1531,6 @@
                usb_kill_urb(dec->iso_urb[i]);
 
        ttusb_dec_free_iso_urbs(dec);
-
-       if(enable_rc) {
-               /* we have to check whether the irq URB is already submitted.
-                * As the irq is submitted after the interface is changed,
-                * this is the best method i figured out.
-                * Any other possibilities?*/
-               if(dec->interface == TTUSB_DEC_INTERFACE_IN)
-                       usb_kill_urb(dec->irq_urb);
-
-               usb_free_urb(dec->irq_urb);
-
-               usb_buffer_free(dec->udev,IRQ_PACKET_SIZE,
-                                       dec->irq_buffer, dec->irq_dma_handle);
-       }
 }
 
 static void ttusb_dec_exit_tasklet(struct ttusb_dec *dec)
@@ -1663,6 +1670,8 @@
        if (dec->active) {
                ttusb_dec_exit_tasklet(dec);
                ttusb_dec_exit_filters(dec);
+               if(enable_rc)
+                       ttusb_dec_exit_rc(dec);
                ttusb_dec_exit_usb(dec);
                ttusb_dec_exit_dvb(dec);
        }
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to