Advertisement
Guest User

Untitled

a guest
Apr 4th, 2016
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. --- drivers/media/usb/uvc/uvc_driver.c.orig 2015-06-06 22:48:39.375283516 +0900
  2. +++ drivers/media/usb/uvc/uvc_driver.c 2015-06-06 22:48:08.371766829 +0900
  3. @@ -1496,7 +1496,8 @@
  4. if (entity == NULL) {
  5. uvc_trace(UVC_TRACE_DESCR, "Found reference to "
  6. "unknown entity %d.\n", id);
  7. - return -EINVAL;
  8. +// return -EINVAL;
  9. +return 0;
  10. }
  11.  
  12. *_entity = entity;
  13. @@ -1518,7 +1519,8 @@
  14. if (entity->chain.next || entity->chain.prev) {
  15. uvc_trace(UVC_TRACE_DESCR, "Found reference to "
  16. "entity %d already in chain.\n", entity->id);
  17. - return -EINVAL;
  18. +// return -EINVAL;
  19. +return 0;
  20. }
  21.  
  22. /* Process entity */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement