1. 07 Dec, 2009 1 commit
    • Dominik Brodowski's avatar
      pcmcia: CodingStyle fixes · 9fea84f4
      Dominik Brodowski authored
      
      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: default avatarDominik Brodowski <linux@dominikbrodowski.net>
      9fea84f4
  2. 08 Nov, 2009 1 commit
  3. 22 Aug, 2008 1 commit
  4. 24 Jun, 2008 2 commits
  5. 01 May, 2008 1 commit
  6. 05 Feb, 2008 1 commit
    • Julia Lawall's avatar
      drivers/pcmcia: add missing pci_dev_get · 1523508d
      Julia Lawall authored
      pci_get_slot does a pci_dev_get, so pci_dev_put needs to be called in an
      error case.
      
      An extract of the semantic match used to find the problem is as follows:
      (http://www.emn.fr/x-info/coccinelle/
      
      )
      
      // <smpl>
      @@
      type find1.T,T1,T2;
      identifier find1.E;
      statement find1.S;
      expression x1,x2,x3;
      expression find1.test;
      int ret != 0;
      @@
      
        T E;
        ...
      (
      * E = pci_get_slot(...);
        if (E == NULL) S
      |
      * if ((E = pci_get_slot(...)) == NULL)
        S
      )
        ... when != pci_dev_put(...,(T1)E,...)
            when != if (E != NULL) { ... pci_dev_put(...,(T1)E,...); ...}
            when != x1 = (T1)E
            when != E = x3;
            when any
        if (test) {
          ... when != pci_dev_put(...,(T2)E,...)
              when != if (E != NULL) { ... pci_dev_put(...,(T2)E,...); ...}
              when != x2 = (T2)E
      (
      *   return;
      |
      *   return ret;
      )
        }
      // </smpl>
      Signed-off-by: default avatarJulia Lawall <julia@diku.dk>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      1523508d
  7. 17 Feb, 2007 1 commit
  8. 01 Oct, 2006 1 commit
  9. 26 Sep, 2005 1 commit
    • Daniel Ritz's avatar
      [PATCH] yenta: auto-tune EnE bridges for CardBus cards · 8c3520d4
      Daniel Ritz authored
      
      Echo Audio cardbus products are known to be incompatible with EnE bridges.
      in order to maybe solve the problem a EnE specific test bit has to be set,
      another cleared...but other setups have a good chance to break when just
      forcing the bits.  so do the whole thingy automatically.
      
      The patch adds a hook in cb_alloc() that allows special tuning for the
      different chipsets.  for ene just match the Echo products and set/clear the
      test bits, defaults to do the same thing as w/o the patch to not break
      working setups.
      Signed-off-by: default avatarDaniel Ritz <daniel.ritz@gmx.ch>
      Cc: Linus Torvalds <torvalds@osdl.org>
      Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
      Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
      8c3520d4
  10. 07 Jul, 2005 1 commit
  11. 16 Apr, 2005 1 commit
    • Linus Torvalds's avatar
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds authored
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4