1. 14 4月, 2009 1 次提交
  2. 07 4月, 2009 4 次提交
  3. 18 3月, 2009 3 次提交
  4. 02 3月, 2009 2 次提交
  5. 26 2月, 2009 2 次提交
  6. 20 2月, 2009 1 次提交
  7. 17 2月, 2009 2 次提交
  8. 16 2月, 2009 1 次提交
  9. 06 2月, 2009 1 次提交
  10. 05 2月, 2009 7 次提交
  11. 27 1月, 2009 4 次提交
  12. 19 1月, 2009 1 次提交
  13. 16 1月, 2009 2 次提交
  14. 14 1月, 2009 1 次提交
  15. 13 1月, 2009 1 次提交
  16. 12 1月, 2009 2 次提交
  17. 09 1月, 2009 1 次提交
  18. 08 1月, 2009 2 次提交
  19. 06 1月, 2009 1 次提交
  20. 04 1月, 2009 1 次提交
    • J
      ALSA: sound/usb: Use negated usb_endpoint_xfer_control, etc · 913ae5a2
      Julia Lawall 提交于
      This patch extends 42a6e66f by using
      usb_endpoint_xfer_control, usb_endpoint_xfer_isoc, usb_endpoint_xfer_bulk,
      and usb_endpoint_xfer_int in the negated case as well.
      
      This patch also rewrites some calls to usb_endpoint_dir_in as negated calls
      to !usb_endpoint_dir_out, and vice versa, to better correspond to the
      intent of the original code.
      
      The semantic patch that makes this change is as follows:
      (http://www.emn.fr/x-info/coccinelle/)
      
      // <smpl>
      @@ struct usb_endpoint_descriptor *epd; @@
      
      - (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_CONTROL\|0\))
      + !usb_endpoint_xfer_control(epd)
      
      @@ struct usb_endpoint_descriptor *epd; @@
      
      - (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_ISOC\|1\))
      + !usb_endpoint_xfer_isoc(epd)
      
      @@ struct usb_endpoint_descriptor *epd; @@
      
      - (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_BULK\|2\))
      + !usb_endpoint_xfer_bulk(epd)
      
      @@ struct usb_endpoint_descriptor *epd; @@
      
      - (usb_endpoint_type(epd) != \(USB_ENDPOINT_XFER_INT\|3\))
      + !usb_endpoint_xfer_int(epd)
      // </smpl>
      Signed-off-by: NJulia Lawall <julia@diku.dk>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      913ae5a2
新手
引导
客服 返回
顶部