]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
media: usb: ttusb-dec: reduce the number of memory reads in ttusb_dec_handle_irq()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Thu, 7 May 2020 10:25:21 +0000 (12:25 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 12 May 2020 15:32:35 +0000 (17:32 +0200)
In ttusb_dec_handle_irq(), buffer[4] is continuously read from memory
three times, without being modified.
To reduce the number of memory reads, buffer[4] is first assigned to a
local variable index, and then index is used to replace buffer[4].

Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/usb/ttusb-dec/ttusb_dec.c

index 3198f9624b7c05ab423db6f7bf77bf551c0254b1..b8d39b2f777fa938231107d7e50625a51086cd1c 100644 (file)
@@ -250,6 +250,7 @@ static void ttusb_dec_handle_irq( struct urb *urb)
        struct ttusb_dec *dec = urb->context;
        char *buffer = dec->irq_buffer;
        int retval;
+       int index = buffer[4];
 
        switch(urb->status) {
                case 0: /*success*/
@@ -281,11 +282,11 @@ static void ttusb_dec_handle_irq( struct urb *urb)
                 * this should/could be added later ...
                 * for now lets report each signal as a key down and up
                 */
-               if (buffer[4] - 1 < ARRAY_SIZE(rc_keys)) {
-                       dprintk("%s:rc signal:%d\n", __func__, buffer[4]);
-                       input_report_key(dec->rc_input_dev, rc_keys[buffer[4] - 1], 1);
+               if (index - 1 < ARRAY_SIZE(rc_keys)) {
+                       dprintk("%s:rc signal:%d\n", __func__, index);
+                       input_report_key(dec->rc_input_dev, rc_keys[index - 1], 1);
                        input_sync(dec->rc_input_dev);
-                       input_report_key(dec->rc_input_dev, rc_keys[buffer[4] - 1], 0);
+                       input_report_key(dec->rc_input_dev, rc_keys[index - 1], 0);
                        input_sync(dec->rc_input_dev);
                }
        }