1. 30 1月, 2015 1 次提交
  2. 15 1月, 2015 6 次提交
  3. 21 11月, 2014 2 次提交
  4. 11 11月, 2014 1 次提交
  5. 04 11月, 2014 3 次提交
  6. 20 10月, 2014 1 次提交
  7. 25 9月, 2014 1 次提交
  8. 17 7月, 2014 1 次提交
  9. 01 5月, 2014 1 次提交
  10. 05 3月, 2014 1 次提交
    • R
      usb: gadget: at91_udc: fix ep maxpacket initialisation · 0e06bcac
      Robert Baldyga 提交于
      This patch fixes problem with unnecessary usb_ep_set_maxpacket_limit() usage.
      It should not be used in at91udc_probe() function, where maxpacket values are
      set for field "maxpacket" of struct at91_ep, which is representation of
      endpoint in driver internals. Function usb_ep_set_maxpacket_limit() is called
      in udc_reinit() function, where struct usb_ep instances are initialised with
      values set previously in struct at91_ep instances. So it's very important to
      initialise it properly.
      Signed-off-by: NRobert Baldyga <r.baldyga@samsung.com>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      0e06bcac
  11. 09 1月, 2014 1 次提交
  12. 24 12月, 2013 1 次提交
  13. 18 12月, 2013 1 次提交
    • R
      usb: gadget: add "maxpacket_limit" field to struct usb_ep · e117e742
      Robert Baldyga 提交于
      This patch adds "maxpacket_limit" to struct usb_ep. This field contains
      maximum value of maxpacket supported by driver, and is set in driver probe.
      This value should be used by autoconfig() function, because value of field
      "maxpacket" is set to value from endpoint descriptor when endpoint becomes
      enabled. So when autoconfig() function will be called again for this endpoint,
      "maxpacket" value will contain wMaxPacketSize from descriptior instead of
      maximum packet size for this endpoint.
      
      For this reason this patch adds new field "maxpacket_limit" which contains
      value of maximum packet size (which defines maximum endpoint capabilities).
      This value is used in ep_matches() function used by autoconfig().
      
      Value of "maxpacket_limit" should be set in UDC driver probe function, using
      usb_ep_set_maxpacket_limit() function, defined in gadget.h. This function
      set choosen value to both "maxpacket_limit" and "maxpacket" fields.
      
      This patch modifies UDC drivers by adding support for maxpacket_limit.
      Signed-off-by: NRobert Baldyga <r.baldyga@samsung.com>
      Signed-off-by: NKyungmin Park <kyungmin.park@samsung.com>
      Signed-off-by: NFelipe Balbi <balbi@ti.com>
      e117e742
  14. 02 8月, 2013 2 次提交
  15. 30 7月, 2013 1 次提交
  16. 15 7月, 2013 2 次提交
  17. 10 4月, 2013 1 次提交
    • A
      procfs: new helper - PDE_DATA(inode) · d9dda78b
      Al Viro 提交于
      The only part of proc_dir_entry the code outside of fs/proc
      really cares about is PDE(inode)->data.  Provide a helper
      for that; static inline for now, eventually will be moved
      to fs/proc, along with the knowledge of struct proc_dir_entry
      layout.
      Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
      d9dda78b
  18. 18 3月, 2013 3 次提交
  19. 18 1月, 2013 1 次提交
  20. 10 1月, 2013 2 次提交
  21. 22 11月, 2012 1 次提交
  22. 19 11月, 2012 1 次提交
  23. 06 11月, 2012 1 次提交
  24. 10 9月, 2012 2 次提交
  25. 07 9月, 2012 2 次提交