1. 06 6月, 2008 1 次提交
  2. 12 5月, 2008 1 次提交
    • S
      [MIPS] Alchemy PCI code style cleanup · a9633279
      Sergei Shtylyov 提交于
      Fix 15 errors and 4 warnings given by checkpatch.pl:
      
      - space between the asterisk and variable name;
      
      - space after opening and before closing parentheses;
      
      - leading spaces instead of tabs;
      
      - printk() without KERN_* facility level;
      
      - unnecessary braces for single-statement block;
      
      - line over 80 characters.
      
      In addition to these changes, also do the following:
      
      - combine the nested 'if' statements into one when possible;
      
      - remove needless parentheses;
      
      - add missing and remove excess spaces between operator and its operands;
      
      - fix printk() format specifiers mismatching the argument types;
      
      - put the function's result type and name/parameters on the same line;
      
      - insert missing and remove excess new lines;
      
      - properly indent multi-line expressions;
      
      - make the multi-line comment style consistent with the kernel style elsewhere
        by adding empty first line;
      
      - fix typos, capitalize acronyms, etc. in the comments;
      
      - update MontaVista copyright;
      
      - remove Pete Popov's old email address...
      Signed-off-by: NSergei Shtylyov <sshtylyov@ru.mvista.com>
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      a9633279
  3. 29 4月, 2008 2 次提交
  4. 01 4月, 2008 1 次提交
  5. 12 3月, 2008 2 次提交
  6. 20 2月, 2008 2 次提交
  7. 29 1月, 2008 1 次提交
  8. 15 1月, 2008 1 次提交
  9. 07 1月, 2008 2 次提交
  10. 15 12月, 2007 1 次提交
  11. 07 12月, 2007 1 次提交
  12. 04 12月, 2007 1 次提交
  13. 16 11月, 2007 3 次提交
  14. 30 10月, 2007 2 次提交
  15. 20 10月, 2007 1 次提交
  16. 17 10月, 2007 2 次提交
  17. 12 10月, 2007 6 次提交
  18. 09 10月, 2007 1 次提交
  19. 05 10月, 2007 1 次提交
  20. 12 9月, 2007 1 次提交
  21. 11 9月, 2007 1 次提交
  22. 27 8月, 2007 3 次提交
    • R
      606bf782
    • R
      [MIPS] PCI: Remove __devinit attribute from pcibios_fixup_bus. · c4aa2563
      Ralf Baechle 提交于
      Since 96bde06a several callers of
      pcibios_resource_to_bus are no longer marked __devinit resulting in a
      pile of modpost warnings if PCI && !HOTPLUG:
      
        MODPOST vmlinux.o
      WARNING: vmlinux.o(.text+0x15dde8): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_map_rom' and 'pci_map_rom_copy')
      WARNING: vmlinux.o(.text+0x15e140): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_update_resource' and 'pci_claim_resource')
      WARNING: vmlinux.o(.text+0x15f0cc): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_setup_cardbus' and 'pci_bus_assign_resources')
      WARNING: vmlinux.o(.text+0x15f0f0): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_setup_cardbus' and 'pci_bus_assign_resources')
      WARNING: vmlinux.o(.text+0x15f114): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_setup_cardbus' and 'pci_bus_assign_resources')
      WARNING: vmlinux.o(.text+0x15f138): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_setup_cardbus' and 'pci_bus_assign_resources')
      WARNING: vmlinux.o(.text+0x15f438): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_bus_assign_resources' and 'pbus_size_mem')
      WARNING: vmlinux.o(.text+0x15f4f4): Section mismatch: reference to .init.text:pcibios_resource_to_bus (between 'pci_bus_assign_resources' and 'pbus_size_mem')
      
      Removing __devinit from pcibios_resource_to_bus make the same necessary
      for pcibios_fixup_device_resources as well.
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      c4aa2563
    • R
      [MIPS] PCI: Remove __devinit attribute from pcibios_fixup_bus. · 4547d224
      Ralf Baechle 提交于
      Since 96bde06a pcibios_fixup_bus's caller
      pci_scan_child_bus is no longer marked __devinit resulting in this modpost
      warning if PCI && !HOTPLUG:
      
        MODPOST vmlinux.o
      WARNING: vmlinux.o(.text+0x158b9c): Section mismatch: reference to .init.text:pcibios_fixup_bus (between 'pci_scan_child_bus' and 'pci_scan_bus_parented')
      Signed-off-by: NRalf Baechle <ralf@linux-mips.org>
      4547d224
  23. 01 8月, 2007 3 次提交