1. 05 6月, 2012 10 次提交
  2. 25 5月, 2012 1 次提交
  3. 16 5月, 2012 3 次提交
  4. 13 4月, 2012 2 次提交
  5. 07 3月, 2012 6 次提交
  6. 25 1月, 2012 3 次提交
  7. 15 12月, 2011 3 次提交
  8. 01 12月, 2011 1 次提交
  9. 19 11月, 2011 1 次提交
    • G
      USB: convert some miscellanies drivers to use module_usb_driver() · fe748483
      Greg Kroah-Hartman 提交于
      This converts the remaining USB drivers in the kernel to use the
      module_usb_driver() macro which makes the code smaller and a bit
      simpler.
      
      Added bonus is that it removes some unneeded kernel log messages about
      drivers loading and/or unloading.
      
      Cc: Guenter Roeck <guenter.roeck@ericsson.com>
      Cc: Jean Delvare <khali@linux-fr.org>
      Cc: Ben Dooks <ben-linux@fluff.org>
      Cc: Till Harbaum <till@harbaum.org>
      Cc: Karsten Keil <isdn@linux-pingi.de>
      Cc: Chris Ball <cjb@laptop.org>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Lauro Ramos Venancio <lauro.venancio@openbossa.org>
      Cc: Aloisio Almeida Jr <aloisio.almeida@openbossa.org>
      Cc: Samuel Ortiz <sameo@linux.intel.com>
      Cc: Steve Glendinning <steve.glendinning@smsc.com>
      Cc: Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
      Cc: Evgeniy Polyakov <zbr@ioremap.net>
      Cc: Wim Van Sebroeck <wim@iguana.be>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Jesper Juhl <jj@chaosbits.net>
      Cc: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
      Cc: Jamie Iles <jamie@jamieiles.com>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      fe748483
  10. 01 11月, 2011 1 次提交
  11. 22 9月, 2011 1 次提交
    • R
      nfc: NFC_WILINK depends on NFC_NCI · ed46fdfc
      Randy Dunlap 提交于
      nwcwilink.c uses nci_*() interfaces, so it should depend on
      NFC_NCI.
      
      Fixes these build errors:
      ERROR: "nci_register_device" [drivers/nfc/nfcwilink.ko] undefined!
      ERROR: "nci_allocate_device" [drivers/nfc/nfcwilink.ko] undefined!
      ERROR: "nci_recv_frame" [drivers/nfc/nfcwilink.ko] undefined!
      ERROR: "nci_free_device" [drivers/nfc/nfcwilink.ko] undefined!
      ERROR: "nci_unregister_device" [drivers/nfc/nfcwilink.ko] undefined!
      Signed-off-by: NRandy Dunlap <rdunlap@xenotime.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      ed46fdfc
  12. 21 9月, 2011 3 次提交
  13. 25 8月, 2011 1 次提交
  14. 27 7月, 2011 1 次提交
  15. 06 7月, 2011 2 次提交
  16. 26 2月, 2011 1 次提交
    • M
      drivers/nfc/pn544.c: add missing regulator · ac3c8304
      Matti J. Aaltonen 提交于
      The regulator framework is used for power management.  The regulators are
      only named in the driver code, the actual control stuff is in the board
      file for each architecture or use case.
      
      The PN544 chip has three regulators that can be controlled or not -
      depending on the architecture where the chip is being used.  So some of
      the regulators may not be controllable.  In our current case the third
      regulator, which was missing from the code, went unnoticed because we
      didn't need to control it.  To be as general as possible - in this respect
      - the driver needs to list all regulators.  Then the board file can be
      used to actually set the usage.
      Signed-off-by: NMatti J. Aaltonen <matti.j.aaltonen@nokia.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      ac3c8304