1. 11 8月, 2011 1 次提交
    • J
      i825xx: Move the Intel 82586/82593/82596 based drivers · 11597885
      Jeff Kirsher 提交于
      Move the drivers that use the i82586/i82593/i82596 chipsets into
      drivers/net/ethernet/i825xx/ and make the necessary Kconfig and
      Makefile changes.  There were 4 3Com drivers which were initially
      moved into 3com/, which now reside in i825xx since they all used
      the i82586 chip.
      
      CC: Philip Blundell <philb@gnu.org>
      CC: Russell King <linux@arm.linux.org.uk>
      CC: <aris@cathedrallabs.org>
      CC: Donald Becker <becker@scyld.com>
      CC: Chris Beauregard <cpbeaure@undergrad.math.uwaterloo.ca>
      CC: Richard Procter <rnp@paradise.net.nz>
      CC: Andries Brouwer <aeb@cwi.nl>
      CC: "M.Hipp" <hippm@informatik.uni-tuebingen.de>
      CC: Richard Hirst <richard@sleepie.demon.co.uk>
      CC: Sam Creasey <sammy@oh.verio.com>
      CC: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      11597885
  2. 30 12月, 2008 1 次提交
    • R
      EtherExpress16: fix printing timed out status · 684f4a4c
      Roel Kluin 提交于
      in drivers/net/eexpress.c:558, function unstick_cu()
      
      while (!SCB_complete(rsst=scb_status(dev))) {
      	...
      	if (...)
      		printk(KERN_WARNING "%s: Reset timed out status %04x, retrying...\n",
                                                             dev->name,rsst);
      }
      
      but this will become 
      
      while (!((rsst = scb_status(dev) & 0x8000) != 0) ...
      
      because of the macro:
      
      #define SCB_complete(s) ((s&0x8000)!=0)
      
      so rsst can only become either 0x8000 or 0, but in the latter case the
      loop ends, I think the wrong timed out status is printed. This also
      cleans up similar macros.
      Signed-off-by: NRoel Kluin <roel.kluin@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      684f4a4c
  3. 14 9月, 2006 1 次提交
  4. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      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