Re: [PATCH 1/2] media: usb: uvc: remove duplicate & operation

2017-11-07 Thread Laurent Pinchart
Hello Jaejoong, Thank you for the patch. On Friday, 20 October 2017 10:25:27 EET Jaejoong Kim wrote: > usb_endpoint_maxp() has an inline keyword and searches for bits[10:0] > by & operation with 0x7ff. So, we can remove the duplicate & operation > with 0x7ff. > > Signed-off-by: Jaejoong Kim

Re: [PATCH 1/2] media: usb: uvc: remove duplicate & operation

2017-11-05 Thread Jaejoong Kim
Hi, Laurent Could you please review this patch? Thanks, jaejoong 2017-10-20 16:25 GMT+09:00 Jaejoong Kim : > usb_endpoint_maxp() has an inline keyword and searches for bits[10:0] > by & operation with 0x7ff. So, we can remove the duplicate & operation > with 0x7ff. > >

[PATCH 1/2] media: usb: uvc: remove duplicate & operation

2017-10-20 Thread Jaejoong Kim
usb_endpoint_maxp() has an inline keyword and searches for bits[10:0] by & operation with 0x7ff. So, we can remove the duplicate & operation with 0x7ff. Signed-off-by: Jaejoong Kim --- drivers/media/usb/uvc/uvc_video.c | 4 ++-- 1 file changed, 2 insertions(+), 2