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)
commitf933d160b1e71dd8ab3d4e2586b9ff0f584d985c
tree88ebbcde110d3d555082e224ed3142cb091d9459
parent4e054aab8a1f1b43f4c34846b713ad6d8b43c729
media: usb: ttusb-dec: reduce the number of memory reads in ttusb_dec_handle_irq()

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