10 Jul, 2008

8 commits


07 Jul, 2008

4 commits


03 Jul, 2008

11 commits


16 Jun, 2008

2 commits


03 Jun, 2008

8 commits


02 Jun, 2008

5 commits


19 May, 2008

2 commits

  • The PXA25x and PXA27x USB device controller register definitions are
    different. Currently, they live side by side in pxa-regs.h, but only
    one set is available depending on the setting of PXA25x or PXA27x.

    This means that if we build to support both PXA25x and PXA27x, the
    PXA27x definitions are unavailable, even to PXA27x specific code.

    Remove these definitions from pxa-regs.h, and place them in separate
    files. Include these files where appropriate.

    Note: according to the dependencies in drivers/usb/gadget/Kconfig,
    we do not support the UDC on PXA27x nor PXA3xx CPUs, so remove the
    platform devices from pxa27x.c and pxa3xx.c.

    Signed-off-by: Russell King

    Russell King
     
  • If CONFIG_BACKLIGHT_CORGI is not selected, then corgibl_limit_intensity()
    is not present. However, both corgi_pm.c and sharp_pm.c reference this
    symbol, resulting in a link error.

    Wrap the references with the relevant ifdefs, and avoid the resulting
    NULL pointer dereference by making the code in sharpsl_pm.c also
    conditional on the config symbol.

    Signed-off-by: Russell King

    Russell King