1. 12 9月, 2006 1 次提交
    • A
      [PATCH] Remove more unnecessary driver printk's · d5b20697
      Andy Gospodarek 提交于
      As I promised last week, here is the first pass at removing all
      unnecessary printk's that exist in network device drivers currently in
      promiscuous mode.  The duplicate messages are not needed so they have
      been removed.  Some of these drivers are quite old and might not need an
      update, but I did them all anyway.
      
      I am currently auditing the remaining conditional printk's and will send
      out a patch for those soon.
      Signed-off-by: NAndy Gospodarek <andy@greyhouse.net>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      d5b20697
  2. 11 9月, 2006 1 次提交
    • D
      [PATCH] Fix dm9000 release_resource · 51985487
      Dirk Opfer 提交于
      dm9000_release_board calls release_resource with the platform resource
      instead of the requested resource:
      
      db->addr_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
      db->addr_req = request_mem_region(db->addr_res->start, i, pdev->name);
      
      dm9000_release_board:
      
      if (db->addr_res != NULL) {
      release_resource(db->addr_res);
      kfree(db->addr_req);
      
      With this behavior the kernel will crash on the second removal. The
      attached patch fix this problem.
      Signed-off-by: NDirk Opfer <Dirk@Opfer-Online.de>
      Signed-off-by: NJeff Garzik <jeff@garzik.org>
      51985487
  3. 06 9月, 2006 1 次提交
  4. 30 8月, 2006 3 次提交
  5. 24 8月, 2006 6 次提交
  6. 20 8月, 2006 28 次提交