1. 17 12月, 2009 2 次提交
  2. 02 11月, 2009 1 次提交
  3. 15 8月, 2009 1 次提交
  4. 25 6月, 2009 1 次提交
  5. 16 6月, 2009 1 次提交
    • G
      mips: remove driver_data direct access of struct device · d7792065
      Greg Kroah-Hartman 提交于
      In the near future, the driver core is going to not allow direct access
      to the driver_data pointer in struct device.  Instead, the functions
      dev_get_drvdata() and dev_set_drvdata() should be used.  These functions
      have been around since the beginning, so are backwards compatible with
      all older kernel versions.
      
      Cc: linux-mips@linux-mips.org
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      d7792065
  6. 30 3月, 2009 2 次提交
  7. 13 12月, 2008 1 次提交
  8. 16 7月, 2008 1 次提交
  9. 29 1月, 2008 2 次提交
  10. 16 11月, 2007 1 次提交
  11. 03 11月, 2007 1 次提交
  12. 30 10月, 2007 1 次提交
  13. 20 10月, 2007 2 次提交
  14. 12 10月, 2007 5 次提交
  15. 27 8月, 2007 2 次提交
  16. 01 8月, 2007 1 次提交
  17. 24 7月, 2007 1 次提交
  18. 13 7月, 2007 1 次提交
  19. 11 7月, 2007 1 次提交
  20. 07 6月, 2007 2 次提交
  21. 09 5月, 2007 1 次提交
  22. 27 4月, 2007 1 次提交
    • T
      [MIPS] Change PCI host bridge setup/resources · bea77175
      Thomas Bogendoerfer 提交于
      PCI host bridge setup for SNI RM machines with PCI is quite broken, now
      that Linux does it's resource setup own its own. It will use IO addresses,
      which are needed by the EISA config detection and assigns PCI memory
      addresses, which overlap with ISA legacy addresses (video ram). Below
      is a patch, which changes the way how the PCI memory addresses are
      used and sets the minimum IO address to give enough IO space for
      8 EISA slots). This patch needs the other PCI resource change, I've
      posted.
      Signed-off-by: NThomas Bogendoerfer <tsbogend@alpha.franken.de>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      bea77175
  23. 20 3月, 2007 1 次提交
  24. 05 3月, 2007 1 次提交
  25. 27 2月, 2007 2 次提交
  26. 19 2月, 2007 1 次提交
  27. 07 2月, 2007 2 次提交
  28. 30 11月, 2006 1 次提交
    • A
      [MIPS] IRQ cleanups · 1603b5ac
      Atsushi Nemoto 提交于
      This is a big irq cleanup patch.
      
      * Use set_irq_chip() to register irq_chip.
      * Initialize .mask, .unmask, .mask_ack field.  Functions for these
        method are already exist in most case.
      * Do not initialize .startup, .shutdown, .enable, .disable fields if
        default routines provided by irq_chip_set_defaults() were suitable.
      * Remove redundant irq_desc initializations.
      * Remove unnecessary local_irq_save/local_irq_restore, spin_lock.
      
      With this cleanup, it would be easy to switch to slightly lightwait
      irq flow handlers (handle_level_irq(), etc.) instead of __do_IRQ().
      
      Though whole this patch is quite large, changes in each irq_chip are
      not quite simple.  Please review and test on your platform.  Thanks.
      Signed-off-by: NAtsushi Nemoto <anemo@mba.ocn.ne.jp>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      1603b5ac