1. 17 4月, 2010 3 次提交
  2. 14 4月, 2010 2 次提交
    • S
      ppc4xx: Add option for PPC440SPe ports without old Rev. A support · 2a72e9ed
      Stefan Roese 提交于
      The 440SPe Rev. A is quite old and newer 440SPe boards don't need support
      for this CPU revision. Since removing support for this older version
      simplifies the creation for newer U-Boot ports, this patch now enables
      440SPe > Rev. A support by creating the CONFIG_440SPE_REVA define. By
      defining this in the board config header, Rev. A will still be supported.
      Otherwise (default for newer board ports), Rev. A will not be supported.
      Signed-off-by: NStefan Roese <sr@denx.de>
      2a72e9ed
    • S
      ppc4xx: alpr: Remove some not needed commands to make image fit again · 288991c9
      Stefan Roese 提交于
      The latest changes increased the size of the alpr image a bit more.
      Now it doesn't fit into the 256k reserved for it. This patch now removes
      the commands "loads" and "loadb" which are not needed in the production
      systems.
      Signed-off-by: NStefan Roese <sr@denx.de>
      Cc: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
      288991c9
  3. 13 4月, 2010 20 次提交
  4. 11 4月, 2010 4 次提交
  5. 10 4月, 2010 7 次提交
  6. 09 4月, 2010 4 次提交
    • P
      cmd_ubi: Fix uninitialized variable warning · 3b653fdb
      Peter Tyser 提交于
      gcc 3.4.6 previously reported the following error on many MIPS boards
      which utilize UBI:
        cmd_ubi.c:193: warning: 'vol' might be used uninitialized in this function
      
      The current code is structured such that 'vol' will never be used when
      it is NULL anyway, but gcc isn't smart enough to figure this out.
      Signed-off-by: NPeter Tyser <ptyser@xes-inc.com>
      Signed-off-by: NStefan Roese <sr@denx.de>
      3b653fdb
    • K
      USB storage probe · fac71cc4
      Kim B. Heino 提交于
      While debugging one ill behaving USB device I found two bugs in USB
      storage probe.
      
      usb_stor_get_info() returns -1 (error), 0 (skip) or 1 (ok). First part
      of this patch fixes error case.
      
      Second part fixes usb_inquiry()'s retry counter handling. Original code
      had retry = -1 on error case, not retry = 0 as checked in the next line.
      Signed-off-by: NKim B. Heino <Kim.Heino@bluegiga.com>
      fac71cc4
    • K
      USB storage count · aaad108b
      Kim B. Heino 提交于
      Here's another USB storage patch. Currently U-Boot handles storage
      devices #0 - #4 as valid devices, even if there is none connected. This
      patch fixes usb_stor_get_dev() to check detected device count instead
      of MAX-define.
      
      This is very important for ill behaving devices. usb_dev_desc[] can be
      partially initialized if device probe fails.
      
      After fixing get_dev() it was easy to fix "usb part" etc commands.
      Previously it outputed "Unknown partition table" five times, now it's
      "no USB devices available".
      Signed-off-by: NKim B. Heino <Kim.Heino@bluegiga.com>
      aaad108b
    • S
      EHCI: add NEC PCI ID · d7a22a36
      Sergei Shtylyov 提交于
      Add NEC EHCI controller to the list of the supported devices.
      Signed-off-by: NSergei Shtylyov <sshtylyov@mvista.com>
      
       drivers/usb/host/ehci-pci.c |    1 +
       1 file changed, 1 insertion(+)
      d7a22a36