1. 18 1月, 2010 2 次提交
  2. 08 12月, 2009 1 次提交
    • D
      pcmcia: CodingStyle fixes · 9fea84f4
      Dominik Brodowski 提交于
      Fix several CodingStyle issues in drivers/pcmcia/ . checkpatch.pl no longer
      reports errors in the PCMCIA core. The remaining warnings mostly relate to
      wrong indent -- PCMCIA historically used 4 spaces --, to lines over 80
      characters and to hundreds of typedefs. The cleanup of those will follow
      in the future.
      Signed-off-by: NDominik Brodowski <linux@dominikbrodowski.net>
      9fea84f4
  3. 09 11月, 2009 2 次提交
  4. 19 10月, 2009 2 次提交
  5. 16 9月, 2009 1 次提交
  6. 16 6月, 2009 2 次提交
  7. 02 11月, 2008 2 次提交
  8. 22 9月, 2008 1 次提交
    • A
      pcmcia: Fix broken abuse of dev->driver_data · cec5eb7b
      Alan Cox 提交于
      PCMCIA abuses dev->private_data in the probe methods. Unfortunately it
      continues to abuse it after calling drv->probe() which leads to crashes and
      other nasties (such as bogus probes of multifunction devices) giving errors like
      
      pcmcia: registering new device pcmcia0.1
      kernel: 0.1: GetNextTuple: No more items
      
      Extract the passed data before calling the driver probe function that way
      we don't blow up when the driver reuses dev->private_data as its right.
      
      As its close to the final release just move the hack so it works out,
      hopefully someone will be sufficiently embarrassed to produce a nice rework
      for 2.6.28.
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      cec5eb7b
  9. 26 8月, 2008 1 次提交
  10. 23 8月, 2008 16 次提交
  11. 03 8月, 2008 1 次提交
  12. 24 6月, 2008 3 次提交
  13. 01 5月, 2008 1 次提交
    • S
      pcmcia: silence section mismatch warnings from class_interface variables · ed49f5d0
      Sam Ravnborg 提交于
      Silence the following warnings:
      WARNING: drivers/pcmcia/built-in.o(.data+0x6e8): Section mismatch in reference from the variable pcmcia_bus_interface to the function .devinit.text:pcmcia_bus_add_socket()
      WARNING: drivers/pcmcia/built-in.o(.data+0xa88): Section mismatch in reference from the variable pccard_rsrc_interface to the function .devinit.text:pccard_sysfs_add_rsrc()
      WARNING: drivers/pcmcia/built-in.o(.data+0xa90): Section mismatch in reference from the variable pccard_rsrc_interface to the function .devexit.text:pccard_sysfs_remove_rsrc()
      
      The variables of type class_interface contains references
      to __devinit and __devexit functions which is OK.
      Silence warnings by annotating the variables with __refdata.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Cc: Dominik Brodowski <linux@dominikbrodowski.net>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      ed49f5d0
  14. 06 2月, 2008 2 次提交
  15. 25 1月, 2008 1 次提交
  16. 11 12月, 2007 1 次提交
  17. 17 10月, 2007 1 次提交